Skip to content

Instantly share code, notes, and snippets.

@timabell
Created October 18, 2010 22:12
Show Gist options
  • Save timabell/633183 to your computer and use it in GitHub Desktop.
Save timabell/633183 to your computer and use it in GitHub Desktop.
aspect ratios for files in a directory
for x in `ls`
do identify -format '%f %w %h' $x | awk '{if ($2>$3) print $2/$3 "\t" $1; else print $3/$2 "\t" $1; }'
done | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment