Skip to content

Instantly share code, notes, and snippets.

@itoshkov
Last active October 5, 2016 09:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itoshkov/30aae3ea14323e6a64f758f36fdcdcda to your computer and use it in GitHub Desktop.
Save itoshkov/30aae3ea14323e6a64f758f36fdcdcda to your computer and use it in GitHub Desktop.
Move images with certain size to directory
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