Monthly Archives: May 2011

Batch Rename One-Liner

Following is a simple way to perform batch renaming, using the Command line: ls *.jpg | awk ‘{print(“mv “$1” “$1)}’ | sed ‘s/jpg/jpeg/’ | /bin/sh If you wish to see the renaming commands before they are performed (just to make … Continue reading

Posted in Unix Tidbits | Leave a comment