Skip to content

Instantly share code, notes, and snippets.

@0x7067
Created February 10, 2020 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0x7067/09e58090590525bb168eb24627e0a2db to your computer and use it in GitHub Desktop.
Save 0x7067/09e58090590525bb168eb24627e0a2db to your computer and use it in GitHub Desktop.
Recursively convert all PNG files in a directory to webp
for i in $(find . -name "*.png" | sed 's/\.png//1'); do cwebp -q 75 $i.png -o $i.webp; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment