Skip to content

Instantly share code, notes, and snippets.

@achaussier
Created September 3, 2018 17:36
Show Gist options
  • Save achaussier/bb3a7ec6a656ebc3d2a16eaa36821e63 to your computer and use it in GitHub Desktop.
Save achaussier/bb3a7ec6a656ebc3d2a16eaa36821e63 to your computer and use it in GitHub Desktop.
Convert images to webp
find . -name "*.png" -exec sh -c 'cwebp -q 75 $1 -o "${1%.*}.webp"' _ {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment