Last active
August 29, 2015 14:26
-
-
Save eamonnbell/e9f178ffe4d3b1d137df to your computer and use it in GitHub Desktop.
Sort images by aspect ratio (requires ImageMagick)
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
identify *.pbm | \ | |
gawk '{split($3,sizes,"x"); print $1,sizes[1]/sizes[2]}' | \ | |
sed 's/\[.\]//' | \ | |
sort -gk 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment