Skip to content

Instantly share code, notes, and snippets.

@chankruze
Created January 16, 2019 01:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chankruze/e7fffe001b68e8f0050ae1fa5de2cf1a to your computer and use it in GitHub Desktop.
Save chankruze/e7fffe001b68e8f0050ae1fa5de2cf1a to your computer and use it in GitHub Desktop.
@echo off
title convert2webp
dir /b > filenames.txt
md converted
for /F "tokens=*" %%A in (filenames.txt) do (cwebp %%A -q 100 -o converted\%%A.webp)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment