Skip to content

Instantly share code, notes, and snippets.

@random-robbie
Last active October 20, 2021 05:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save random-robbie/768c4dc4c90d5d630add54c37c9675f9 to your computer and use it in GitHub Desktop.
Save random-robbie/768c4dc4c90d5d630add54c37c9675f9 to your computer and use it in GitHub Desktop.
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