Skip to content

Instantly share code, notes, and snippets.

@icaoberg
Created August 22, 2019 14:44
Show Gist options
  • Save icaoberg/919dab0fc59b2d403b0fdf03fab667e3 to your computer and use it in GitHub Desktop.
Save icaoberg/919dab0fc59b2d403b0fdf03fab667e3 to your computer and use it in GitHub Desktop.
Convert all webp files to png
#!/bin/bash
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