Created
July 1, 2025 19:55
-
-
Save djnotes/ba2343ae3c809ce8f07e594afd840594 to your computer and use it in GitHub Desktop.
Converts all jpg and JPG files in the current directory to WEBP
This file contains hidden or 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 {*.jpg,*.JPG}; do new="${file%.jpg}"; new="${new%.JPG}.webp";magick $file -resize 480 $new;done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment