in reply to Mass File Renaming

Depending how complex your logic is, if all the files are in the same directory you can always do something like

ls | perl -nle 'print $_'

Replacing the print with something useful. I use this all the time to rename files.