Skip to content

Instantly share code, notes, and snippets.

@tobiasfabian
Created November 17, 2022 11:07
Show Gist options
  • Save tobiasfabian/058b75b308cdabf8e24cc18f10f04e66 to your computer and use it in GitHub Desktop.
Save tobiasfabian/058b75b308cdabf8e24cc18f10f04e66 to your computer and use it in GitHub Desktop.
Optimize images with squoosh cli
cd ../content/; find . -name "*.png" -exec bash -c 'file="{}"; cd "$(dirname "$file")"; npx @squoosh/cli \
--oxipng '{"quality":90}' \
$(basename $file)' \
cd ../content/; find . -name "*.jpg" -exec bash -c 'file="{}"; cd "$(dirname "$file")"; npx @squoosh/cli \
--mozjpeg '{"quality":90}' \
$(basename $file)' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment