LowerCase Filenames


/ Published in: AppleScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. for i in `ls *.cfm`
  2. do
  3. orig=$i
  4. new=`echo $i | tr [A-Z] [a-z]`
  5. echo "Moving $orig --> $new"
  6. mv $orig $new
  7. done

Report this snippet


Comments


You need to login to view comments.