projects
/
feisty_meow.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
updated to support 6 digits instead of 4.
[feisty_meow.git]
/
scripts
/
files
/
recursive_renlower.sh
1
#!/bin/bash
2
#need to support multiple names.
3
for i; do
4
#old find "$1" -type d -depth -print -exec perl $FEISTY_MEOW_SCRIPTS/renlower.pl {}/* ';'
5
find "$i" -depth -exec perl $FEISTY_MEOW_SCRIPTS/renlower.pl "{}" ';'
6
done
7