first check-in of feisty meow codebase. many things broken still due to recent
[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 $SHELLDIR/renlower.pl {}/* ';'
5   find "$i" -depth -exec perl $SHELLDIR/renlower.pl "{}" ';'
6 done
7