Skip to content

Instantly share code, notes, and snippets.

@alexx855
Last active October 19, 2022 14:24
Show Gist options
  • Save alexx855/85c8bc2162346d601f1f7d1010cd2943 to your computer and use it in GitHub Desktop.
Save alexx855/85c8bc2162346d601f1f7d1010cd2943 to your computer and use it in GitHub Desktop.
png jpeg images batch optimization with jpegoptim and optipng

install deps

sudo apt-get install jpegoptim
sudo apt-get install optipng

change ./ for your images folder

find ./ -type f -iname *.png -print0 | xargs -0 optipng -nc -nb -o7
find ./ -type f -iname *.jpeg -exec jpegoptim --max=70 --all-progressive -p {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment