Skip to content

Instantly share code, notes, and snippets.

@up1
Created April 6, 2015 05:39
Show Gist options
  • Save up1/7c91c38aeffe38325e56 to your computer and use it in GitHub Desktop.
Save up1/7c91c38aeffe38325e56 to your computer and use it in GitHub Desktop.
Demo :: simplicity
find . -iname '*.jp*g' -print0 \
| xargs -0 -L 1 -I @ identify -format '%[EXIF:DateTime] %d/%f\n' @ \
| egrep '^[[:digit:]]{4}:04' \
| cut -d' ' -f3- \
| tar -cf april.tar -T -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment