Created
July 30, 2014 10:01
-
-
Save g0ral/c7522f75c71b798e542d to your computer and use it in GitHub Desktop.
Convert webp to jpg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| for file in *.webp; do | |
| dwebp -o "`basename $file .webp`.png" "$file" | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thx!! so good script!!