repo.or.cz
/
lcapit-junk-code.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Introduces jpeg-recovery source-code
[lcapit-junk-code.git]
/
git-kill-number
blob
df73ee5ab5cc4bdc9eb298904556ea89ccf8c538
1
#!/bin/sh
2
#
3
# Kill the number part of a patch exported by git-format-patch
4
5
for
file
in
$
*;
do
6
mv
-v
$file
$
(
echo
$file
|
sed
's/[0-9]\{4\}-//'
)
7
done
8
9
exit
0