/ Published in: AppleScript
Expand |
Embed | Plain Text
for i in `ls *.cfm` do orig=$i new=`echo $i | tr [A-Z] [a-z]` echo "Moving $orig --> $new" mv $orig $new done
You need to login to post a comment.
burnsra on 08/13/08
1 person have marked this snippet as a favorite
for i in `ls *.cfm` do orig=$i new=`echo $i | tr [A-Z] [a-z]` echo "Moving $orig --> $new" mv $orig $new done
You need to login to post a comment.