Last active
October 5, 2016 09:44
-
-
Save itoshkov/30aae3ea14323e6a64f758f36fdcdcda to your computer and use it in GitHub Desktop.
Move images with certain size to directory
This file contains hidden or 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
identify -format "%wx%h,%f\n" * | grep '^1920x1080,' | colrm 1 10 | while read f; do mv "$f" /tmp/t; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment