Created
September 25, 2023 14:45
-
-
Save interactiveRob/1976393c0a109179cfdb2339baa1aefa to your computer and use it in GitHub Desktop.
Batch convert images to webp on command line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
`for file in ./; do cwebp -q 50 "$file" -o "${file%.*}.webp"; done` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment