Convert webp to png
#!/bin/bash | |
for picture in *.webp ; do | |
new=$(echo $picture | sed 's/\.[^.]*$//') | |
dwebp $picture -o $new.png | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment