5 lines
312 B
Bash
5 lines
312 B
Bash
find . -type f -iname "*.png" -exec optipng -nb -nc {} \;
|
|
find . -type f -iname "*.png" -exec advpng -z4 {} \;
|
|
find . -type f -iname "*.png" -exec pngcrush -rem gAMA -rem alla -rem cHRM -rem iCCP -rem sRGB -rem time -ow {} \;
|
|
find . -type f -iname "*.jpg" -o -iname "*.jpeg" -exec jpegoptim -f --strip-all {} \;
|