Skip to content

Instantly share code, notes, and snippets.

@ivanrosolen
Created April 13, 2015 14:11
Show Gist options
  • Save ivanrosolen/638de91141fd6b33bd41 to your computer and use it in GitHub Desktop.
Save ivanrosolen/638de91141fd6b33bd41 to your computer and use it in GitHub Desktop.
Sips
#!/bin/bash
for file in $(find . -name '*.JPG')
do
echo "$file"
WIDTH=`sips -g pixelWidth $file | tail -n1 | cut -d' ' -f4`
if [ "$WIDTH" -lt "500" ]; then
mv $file ./nope/
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment