Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cesardcorreia/056284901d53368842d234d7716bc21d to your computer and use it in GitHub Desktop.
Save cesardcorreia/056284901d53368842d234d7716bc21d to your computer and use it in GitHub Desktop.
webp to jpg
#!/bin/bash
for file in *
do
dwebp "$file" -o "$file.jpg"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment