Skip to content

Instantly share code, notes, and snippets.

@sstolz
Last active July 26, 2019 09:53
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 sstolz/41205c490bfb2bb783e59132ca45e2c0 to your computer and use it in GitHub Desktop.
Save sstolz/41205c490bfb2bb783e59132ca45e2c0 to your computer and use it in GitHub Desktop.
MS DOS
# transform all zip file in a folder (no recurse) to rar
for %f in (*.zip) do (unzip %f -d %~nf && rar a -dr %~nf.rar %~nf && del %f)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment