Skip to content

Instantly share code, notes, and snippets.

@rotemtam
Created April 14, 2018 09:37
Show Gist options
  • Save rotemtam/bac6a269a71f2f94106dd81701258d14 to your computer and use it in GitHub Desktop.
Save rotemtam/bac6a269a71f2f94106dd81701258d14 to your computer and use it in GitHub Desktop.
filter portrait images with imagemagick and bash
#!/bin/bash
for f in ./*.jpg
do
r=$(identify -format '%[fx:(h>w)]' "$f")
if [[ r -eq 1 ]]
then
rm "$f"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment