Skip to content

Instantly share code, notes, and snippets.

@gogvale
Created January 23, 2020 02:19
Show Gist options
  • Save gogvale/395addf8ebce31040cb58046782a95aa to your computer and use it in GitHub Desktop.
Save gogvale/395addf8ebce31040cb58046782a95aa to your computer and use it in GitHub Desktop.
Find all images in portrait mode
#!/bin/bash
find . -iname '*.??g' -type f -exec identify -format '%w %h %i \n' '{}' \; | awk '$1<$2' | cut -d' ' -f3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment