Skip to content

Instantly share code, notes, and snippets.

@atsu666
Created October 8, 2019 06:55
Show Gist options
  • Save atsu666/baa529768601e98d51e592119867e694 to your computer and use it in GitHub Desktop.
Save atsu666/baa529768601e98d51e592119867e694 to your computer and use it in GitHub Desktop.
#!/bin/sh
DIR="./media"
find $DIR -name "*.jpg" -type f -exec cwebp -o {}.webp {} \;
find $DIR -name "*.jpeg" -type f -exec cwebp -o {}.webp {} \;
find $DIR -name "*.png" -type f -exec cwebp -o {}.webp {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment