Created
October 6, 2023 15:02
-
-
Save bjogden/bc3854e4a6175caacc5c4722e0641ce6 to your computer and use it in GitHub Desktop.
Convert PNGs to WEBP
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 *.png; | |
do convert $file "`basename $file .png`.webp"; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment