Created
April 6, 2015 05:39
-
-
Save up1/7c91c38aeffe38325e56 to your computer and use it in GitHub Desktop.
Demo :: simplicity
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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