Created
October 7, 2016 07:23
-
-
Save VirtuBox/e8a21d0a7d5fff800f455619e00b3b96 to your computer and use it in GitHub Desktop.
Simple script to optimize your images with optipng and jpegoptim
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
#!/bin/bash | |
cd /var/www | |
find . -name *.jp* | xargs jpegoptim --strip-all -m76 | |
find . -iname '*.png' -print0 | xargs -0 optipng -o7 -preserve |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment