Skip to content

Instantly share code, notes, and snippets.

@djnotes
Created July 1, 2025 19:55
Show Gist options
  • Save djnotes/ba2343ae3c809ce8f07e594afd840594 to your computer and use it in GitHub Desktop.
Save djnotes/ba2343ae3c809ce8f07e594afd840594 to your computer and use it in GitHub Desktop.
Converts all jpg and JPG files in the current directory to WEBP
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