Skip to content

Instantly share code, notes, and snippets.

@everaldomatias
Created May 13, 2021 02:34
Show Gist options
  • Save everaldomatias/93f196abc94419228f43f7aca40439c3 to your computer and use it in GitHub Desktop.
Save everaldomatias/93f196abc94419228f43f7aca40439c3 to your computer and use it in GitHub Desktop.
Convert *.png to *.webp with webp linux package
for F in *.png; do cwebp $F -o `basename ${F%.png}`.webp; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment