Skip to content

Instantly share code, notes, and snippets.

@007lva
Created May 22, 2020 12:45
Show Gist options
  • Save 007lva/4e52a2134c98ae2decefefde30baad2b to your computer and use it in GitHub Desktop.
Save 007lva/4e52a2134c98ae2decefefde30baad2b to your computer and use it in GitHub Desktop.
#!/bin/bash
PARAMS=('-m 6 -q 80 -mt')
if [ $# -ne 0 ]; then
PARAMS=$@;
fi
cd $(pwd)
shopt -s nullglob nocaseglob extglob
for FILE in *.@(gif); do
gif2webp $PARAMS "$FILE" -o "${FILE%.*}".webp;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment