(I keep forgetting how to do this!)
* returns all files in a directory. It can also be used as a general wildcard:
*.jpgwill return only JPG filenamessomething*will return only filenames that start withsomething
for f in *; do mv $f $(echo $f | sed SED_SCRIPT); done(Source: http://stackoverflow.com/questions/1086502/rename-multiple-files-in-unix)
Place any sed string in place of SED_SCRIPT. Done!