Skip to content

Instantly share code, notes, and snippets.

@frankIT
Last active April 30, 2022 03:46
Show Gist options
  • Save frankIT/e7e4f7cd0e0a8dfc619d24273b0bc286 to your computer and use it in GitHub Desktop.
Save frankIT/e7e4f7cd0e0a8dfc619d24273b0bc286 to your computer and use it in GitHub Desktop.
batch convert webp to jpg
#!/bin/bash
# apt-get install webp
for f in *.webp
do dwebp $f -o "$f.png"
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment