Skip to content

Instantly share code, notes, and snippets.

@alexmi256
Created July 28, 2025 12:29
Show Gist options
  • Select an option

  • Save alexmi256/8dbc13cbf6ef3bf4ed2c74d213e9b902 to your computer and use it in GitHub Desktop.

Select an option

Save alexmi256/8dbc13cbf6ef3bf4ed2c74d213e9b902 to your computer and use it in GitHub Desktop.
Replace WebP Images with PNG
find . -name "*.webp" -exec sh -c 'dwebp -quiet -mt "$1" -o "${1%.*}.png" && rm "$1"' sh {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment