Roy Sharon
A highly experienced freelance programmer and consultant, specializing in rescue projects with mobile related technologies, including Objective-C (iPhone), Java (Android), Javascript and HTML 5.A keen skipper and a master diver. Sailing around the world, programming on course.-
Recent Posts
Archives
Categories
Meta
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