Skip to content

Instantly share code, notes, and snippets.

@robcolburn
Created July 25, 2015 01:09
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 robcolburn/1fb461255c6ea4ee3b45 to your computer and use it in GitHub Desktop.
Save robcolburn/1fb461255c6ea4ee3b45 to your computer and use it in GitHub Desktop.
exiftool tinkering
`exiftool` fix dates
```sh
exiftool "-FileModifyDate<DateTimeOriginal" "-FileCreateDate<FileModifyDate" .
```
`exiftool` commit
```sh
rm *._original
```
`exiftool` undo
```sh
for file in *_original; do mv "$file" "${file/_original/}"; done
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment