Skip to content

Instantly share code, notes, and snippets.

@thewhodidthis
Created February 15, 2022 04:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thewhodidthis/397a0422b133db5308273069d6257715 to your computer and use it in GitHub Desktop.
Save thewhodidthis/397a0422b133db5308273069d6257715 to your computer and use it in GitHub Desktop.
Retouch image files to reflect EXIF dates
find ./*.jpg -exec sh -c 'touch -d $$(date -j -f "%Y:%m:%d %H:%M:%S" "$$(identify -format "%[EXIF:DateTimeOriginal]" {})" +%Y-%m-%dT%H:%M:%S) {}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment