Earlier this evening I was dealing with a directory of .tif images that all needed to be renamed with the same prefix.
zmv -W '*' 'ARBESKO_*'
This command will take all files in the current directory and give them the prefix of ARBESKO_. So, 452.tif becomes ARBESKO_452.tif which is just what the doctor ordered.
The zmv utility is part of zsh, my preferred shell (as opposed to bash). #
