Skip to content

Instantly share code, notes, and snippets.

@nikolaik
Created October 27, 2013 15:43
Show Gist options
  • Save nikolaik/7183998 to your computer and use it in GitHub Desktop.
Save nikolaik/7183998 to your computer and use it in GitHub Desktop.
Converts a directory of .jpgs to .webp
find . -name "*.jpg" -print0 | sed 's/\.jpg//g' | xargs -0 -I % cwebp -o %.webp -q 90 %.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment