Rename All Files to Lowercase Easily

From HowToGeek

Jump to: navigation, search

If you've ever wanted to rename every file inside the current directory to lowercase, you can use the rename command with this quick regular expression to accomplish it quickly. You can also rename to uppercase.

rename 'y/A-Z/a-z/' *