Skip to content

Instantly share code, notes, and snippets.

@tldrafael
Last active March 23, 2022 18:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tldrafael/7ed3ca607606346d1341c4e2d27c251a to your computer and use it in GitHub Desktop.
Save tldrafael/7ed3ca607606346d1341c4e2d27c251a to your computer and use it in GitHub Desktop.
Get all images' resolutions contained on a directory
for f in *; do file $f | sed 's/.*, \(.*\)x\(.*\),.*/\1x\2/'; done | sort | uniq -c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment