Skip to content

Instantly share code, notes, and snippets.

@riskiwah
Created May 11, 2023 19:34
Show Gist options
  • Save riskiwah/0a017e417fd184efa8da01373883212e to your computer and use it in GitHub Desktop.
Save riskiwah/0a017e417fd184efa8da01373883212e to your computer and use it in GitHub Desktop.
webp convert
#!/bin/bash
for image in $PWD/**/*.{png,jpg,jpeg}; do
if [[ $image != *"webp"* ]]; then
cwebp -q 80 "$image" -o "${image%.*}.webp"
echo "Converted $image to ${image%.*}.webp"
rm "$image"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment