Introduce TinyHttp server
[lcapit-junk-code.git] / git-kill-number
blobc0d21b67140e07d2b8ec11bfe5d3267a0f2e63f2
1 #!/bin/sh
3 # Kill the number part of a patch exported by git-format-patch
5 for file in $*; do
6 mv -v $file $(echo $file | sed 's/[0-9]\{4\}-//')
7 done