Skip to content

Instantly share code, notes, and snippets.

@maliMirkec
Last active May 27, 2016 08:11
Show Gist options
  • Save maliMirkec/486594b4679b25219cba to your computer and use it in GitHub Desktop.
Save maliMirkec/486594b4679b25219cba to your computer and use it in GitHub Desktop.
Optimize images using jpegoptim script
// optime jpegs in folder
jpegoptim *.jpg —strip-all
// optimize jpegs recursivelly
find -type f -name "*.jpg" -exec jpegoptim --strip-all {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment