Skip to content

Instantly share code, notes, and snippets.

@Risyandi
Created April 18, 2021 15:30
Show Gist options
  • Save Risyandi/333aa66ea07314a13cbe3754f9b2206b to your computer and use it in GitHub Desktop.
Save Risyandi/333aa66ea07314a13cbe3754f9b2206b to your computer and use it in GitHub Desktop.
convert all format to webp automate
for file in *.jpg; do cwebp -q 80 "$file" -o "${file%.jpg}.webp"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment