Skip to content

Instantly share code, notes, and snippets.

@ip413
Created July 25, 2022 19:39
Show Gist options
  • Save ip413/38f68112379dac42edb4029a4df7d1a9 to your computer and use it in GitHub Desktop.
Save ip413/38f68112379dac42edb4029a4df7d1a9 to your computer and use it in GitHub Desktop.
#!/usr/bin/bash
# change modify date of file to date from exif properties (DateTimeOriginal)
for file in *; do touch -t `exiftool -s -s -s -d "%Y%m%d%H%M.%S" -DateTimeOriginal $file` $file; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment