Skip to content

Instantly share code, notes, and snippets.

@m3nd3s
Created May 19, 2015 16:54
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 m3nd3s/147ab74e95e631c97096 to your computer and use it in GitHub Desktop.
Save m3nd3s/147ab74e95e631c97096 to your computer and use it in GitHub Desktop.
Find and Resize Images
#!/bin/bash
set -e
for F in $(find . -size +900k)
do
FNAME=`basename $F`
mv "$F" "$F-orig"
echo -n "Converting ${FNAME}: "
convert -strip -quality 80 -resize "1024x768>" "$F-orig" "$F"
echo "done"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment