Skip to content

Instantly share code, notes, and snippets.

@msomu
Created March 18, 2015 08:17
Show Gist options
  • Select an option

  • Save msomu/ba38977c70efda5cc907 to your computer and use it in GitHub Desktop.

Select an option

Save msomu/ba38977c70efda5cc907 to your computer and use it in GitHub Desktop.
Convert to webp
for file in *.png.webp; do mv "$file" "${file%.png.webp}.webp"; done
for file in *; do cwebp -q 80 $file -o $file.webp; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment