Skip to content

Instantly share code, notes, and snippets.

@lqez
Created June 4, 2013 11:06
Show Gist options
  • Save lqez/5705167 to your computer and use it in GitHub Desktop.
Save lqez/5705167 to your computer and use it in GitHub Desktop.
Counting size of image files with grouping.
find -E . -regex '.*\.(jpg|png)' -exec identify {} \; | cut -d ' ' -f 3 | sort -nr | uniq -c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment