Skip to content

Instantly share code, notes, and snippets.

@antelle
Last active August 22, 2017 17:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antelle/8274220bd473eb84b4ab to your computer and use it in GitHub Desktop.
Save antelle/8274220bd473eb84b4ab to your computer and use it in GitHub Desktop.
Batch resize with imagemagick
for f in *.JPG *.jpg; do convert "$f" -resize "1200x1200>" -quality 85 -verbose "$f"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment