Skip to content

Instantly share code, notes, and snippets.

@jakejscott
Created October 11, 2013 02:00
Show Gist options
  • Save jakejscott/6928532 to your computer and use it in GitHub Desktop.
Save jakejscott/6928532 to your computer and use it in GitHub Desktop.
Get rid or those pesky bin/debug and bin/release folders
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S Release') DO RMDIR /S /Q "%%G" FOR /F "tokens=*" %%G IN ('DIR /B /AD /S Debug') DO RMDIR /S /Q "%%G"
@andy-uq
Copy link

andy-uq commented Oct 11, 2013

Check out that cmdline foo!

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