Skip to content

Instantly share code, notes, and snippets.

@nikodemrafalski
Created August 28, 2012 10:03
Show Gist options
  • Save nikodemrafalski/3496807 to your computer and use it in GitHub Desktop.
Save nikodemrafalski/3496807 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"
@kjeske
Copy link

kjeske commented Feb 21, 2013

Bardzo przydatne

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment