Skip to content

Instantly share code, notes, and snippets.

@ZigFisher
Created November 3, 2018 21:44
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 ZigFisher/772189c29e0b55cdf13a724d16b0f193 to your computer and use it in GitHub Desktop.
Save ZigFisher/772189c29e0b55cdf13a724d16b0f193 to your computer and use it in GitHub Desktop.
#!/bin/sh
mkdir small; for f in *.jpg ; do echo "Convering $f ..." ; convert -quality 100 -resize 640x640 "$f" "small/${f%.jpg}-lite.jpg" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment