Skip to content

Instantly share code, notes, and snippets.

@heygambo
Created August 23, 2011 17:27
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 heygambo/1165931 to your computer and use it in GitHub Desktop.
Save heygambo/1165931 to your computer and use it in GitHub Desktop.
Converts all JPGs in Folder using ImageMagick
find . -iname "*.jpg" -print0 | xargs -0 mogrify -resize 1400x -quality 75 -strip *
@heygambo
Copy link
Author

This Script doesn't make a copy of your images. Be Careful!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment