Skip to content

Instantly share code, notes, and snippets.

@andrewhodel
Created January 23, 2023 02:12
Show Gist options
  • Save andrewhodel/cee904fd62103a245ace585352000de9 to your computer and use it in GitHub Desktop.
Save andrewhodel/cee904fd62103a245ace585352000de9 to your computer and use it in GitHub Desktop.
#!/bin/sh
for i in ./*; do
echo ${i}
magick ${i} -quality 80 ${i}.webp
magick ${i} -resize 250x -quality 80 ${i}-small.webp
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment