Skip to content

Instantly share code, notes, and snippets.

@burningTyger
Created January 9, 2014 14:40
Show Gist options
  • Save burningTyger/8335106 to your computer and use it in GitHub Desktop.
Save burningTyger/8335106 to your computer and use it in GitHub Desktop.
quickly rename JPG to my preferred file format based on exif data
for i in *.JPG; do exiv2 -v -r '%Y-%-m-%d_%H-%M%-%S' rename "$i"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment