Last active
June 15, 2018 12:47
-
-
Save cheh/c969999abea791a3ca92f14ef4ec829f to your computer and use it in GitHub Desktop.
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
JPEG | |
find . -iname "*.jpg" -exec jpegoptim --strip-all -m85 -o -p {} \; - ok | |
find ./ -name "*.jpg" -type f -exec jpegtran -copy none -optimize -progressive -outfile {} {} \; | |
jpegoptim.exe --strip-all -m85 -o -p *.jpg | |
PNG | |
find . -iname "*.png" -print0 |xargs -0 optipng -o7 \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment