Skip to content

Instantly share code, notes, and snippets.

@dipeshhkc
Last active March 17, 2022 09:40
Show Gist options
  • Save dipeshhkc/4e910eda481531235781c17b5e5c6ecf to your computer and use it in GitHub Desktop.
Save dipeshhkc/4e910eda481531235781c17b5e5c6ecf to your computer and use it in GitHub Desktop.
Bash Script to convert jpg image to webp
i=0
for img in *.(JPG|jpg);
do
echo "compressing i=$i"
cwebp $img -q 25 -o compressed/$i.webp
i=$((i+1))
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment