(Table of contents & other stuff:  )

Batch rename file extensions in Mac OS X Terminal

find . -iname "*.old" -exec bash -c 'mv "$0" "${0%\.old}.new"' {} \;

Explanation #

It finds all .old files and renames (mv) them to {filename}.new. Easy peasy.

→ Call to action ←

Want more?

Then let's close the virtual gap between us by one step.