Skip to content

Instantly share code, notes, and snippets.

@piouc
Created August 28, 2023 02:17
Show Gist options
  • Save piouc/c41e51551ad1b3867f2d9e344931b2f0 to your computer and use it in GitHub Desktop.
Save piouc/c41e51551ad1b3867f2d9e344931b2f0 to your computer and use it in GitHub Desktop.
convert-all-png-to-webp.sh
find . -type f -name '*.png' -print0 | xargs -0 -n 1 bash -c 'cwebp "$0" -o "${0%.png}.webp"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment