Rename files to lowercase

This is some pretty cool shell/perl scripting to rename all the files in the current directory to their lowercase equivalent. Very cool, and very easy!

find . -type f -exec perl -e 'rename($_, lc) || warn "$_: $!\n" for @ARGV' {} \;
All content licensed under the Creative Commons License