Skip to content

Instantly share code, notes, and snippets.

@innermond
Last active October 18, 2017 10:38
Show Gist options
  • Save innermond/728b37117c703cccad7271c5c032b75c to your computer and use it in GitHub Desktop.
Save innermond/728b37117c703cccad7271c5c032b75c to your computer and use it in GitHub Desktop.
convert jpg or png images to webp format. you will have new webp images along old ones
find . -regex '.*\.\(jpg\|png\)$' -exec bash -c 'convert "$@" -define webp:lossless=false -quality 80 "${@%.*}".webp' _ {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment