Skip to content

Instantly share code, notes, and snippets.

@PontusTideman
Forked from frankIT/webp2png.sh
Created July 5, 2020 10:39
Show Gist options
  • Save PontusTideman/ec43a89d5013494d255c8118538e3264 to your computer and use it in GitHub Desktop.
Save PontusTideman/ec43a89d5013494d255c8118538e3264 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