-
-
Save w33zy/7b948d10175f5417af60ce0128e1e1bd to your computer and use it in GitHub Desktop.
Revisions
-
VirtuBox revised this gist
Dec 24, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # JPG and PNG image bulk optimization ### Install jpegoptim and optipng ``` -
VirtuBox created this gist
Dec 24, 2017 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ # JPG and PNG image bulk optimization with jpegoptim and optipng ### Install jpegoptim and optipng ``` apt update && apt install jpegoptim optipng -y ``` ### JPG optimization ``` cd /path/to/your/image/folder find . -iname "*.jp*" -print0 | xargs -0 jpegoptim --strip-all -m76 ``` ### PNG optimization ``` cd /path/to/your/image/folder find . -iname '*.png' -print0 | xargs -0 optipng -o7 -preserve ```