Skip to content

Instantly share code, notes, and snippets.

@kjeske
Forked from nikodemrafalski/clean.cmd
Created February 21, 2013 14:32
Show Gist options
  • Save kjeske/5005084 to your computer and use it in GitHub Desktop.
Save kjeske/5005084 to your computer and use it in GitHub Desktop.
Clean bin and obj artifacts directories downstream current directory tree.
for /d /r . %%d in (bin, obj) do @if exist "%%d" rd /s/q "%%d"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment