Skip to content

Instantly share code, notes, and snippets.

Created April 4, 2016 14:33
Show Gist options
  • Select an option

  • Save anonymous/d2342b9452fabc6f825f7bd6aaf8435d to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/d2342b9452fabc6f825f7bd6aaf8435d to your computer and use it in GitHub Desktop.
dump meta of images in a directory
find . -type f -iname '*.jpg' -or -iname '*.png' | xargs identify -format "%M %m %wx%h\n"
###or
# FILES=$(find . -type f -iname '*.jpg' -or -iname '*.png')
# for f in $FILES; do identify -format "%M %m %wx%h\n" "$f" ; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment