aboutsummaryrefslogtreecommitdiff
path: root/bin/rename.sh
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-05-27 19:50:28 +0000
committerChristian Grothoff <christian@grothoff.org>2012-05-27 19:50:28 +0000
commitced6bf19685b9c9af19da50a021ca8ff169e7c77 (patch)
treebf0b6e89047ff49ab607c3d94d802f399ebf70f2 /bin/rename.sh
parentf472d7ba8cddab2559d1de2a68e8fbc4e26649da (diff)
-more uniform naming of statisitcs
Diffstat (limited to 'bin/rename.sh')
-rwxr-xr-xbin/rename.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/rename.sh b/bin/rename.sh
index 7d5790b419..178b44081f 100755
--- a/bin/rename.sh
+++ b/bin/rename.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-for n in `find * -name "*.c"` `find * -name "*.h"`
+for n in `find * -name "*.c"` `find * -name "*.h"` `find * -name "*.in"`
do
cat $n | sed -e "s/$1/$2/g" > $n.new
mv $n.new $n || echo "Move failed: $n.new to $n"