Return to Snippet

Revision: 7808
at August 13, 2008 16:50 by burnsra


Initial Code
for i in `ls *.cfm`
do
  orig=$i
  new=`echo $i | tr [A-Z] [a-z]`
  echo "Moving $orig --> $new"
  mv $orig $new
done

Initial URL


Initial Description


Initial Title
LowerCase Filenames

Initial Tags


Initial Language
AppleScript