Skip to content

Instantly share code, notes, and snippets.

@joshuaconner
Created December 13, 2012 02:27
Show Gist options
  • Save joshuaconner/4273530 to your computer and use it in GitHub Desktop.
Save joshuaconner/4273530 to your computer and use it in GitHub Desktop.
using bash to lowercase file extensions
for f in *.JPG; do mv "$f" "${f%.*}.jpg"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment