Last active
May 27, 2016 08:11
-
-
Save maliMirkec/486594b4679b25219cba to your computer and use it in GitHub Desktop.
Optimize images using jpegoptim script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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