Skip to content

Instantly share code, notes, and snippets.

@jmcd
Created July 27, 2012 09:30
Show Gist options
  • Save jmcd/3187094 to your computer and use it in GitHub Desktop.
Save jmcd/3187094 to your computer and use it in GitHub Desktop.
Delete bin and obj directories
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