Skip to content

Instantly share code, notes, and snippets.

@eamonnbell
Last active August 29, 2015 14:26
Show Gist options
  • Save eamonnbell/e9f178ffe4d3b1d137df to your computer and use it in GitHub Desktop.
Save eamonnbell/e9f178ffe4d3b1d137df to your computer and use it in GitHub Desktop.
Sort images by aspect ratio (requires ImageMagick)
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