Skip to content

Instantly share code, notes, and snippets.

@g0ral
Created July 30, 2014 10:01
Show Gist options
  • Select an option

  • Save g0ral/c7522f75c71b798e542d to your computer and use it in GitHub Desktop.

Select an option

Save g0ral/c7522f75c71b798e542d to your computer and use it in GitHub Desktop.
Convert webp to jpg
#!/bin/bash
for file in *.webp; do
dwebp -o "`basename $file .webp`.png" "$file"
done
@neosarchizo
Copy link

Thx!! so good script!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment