Skip to content

Instantly share code, notes, and snippets.

@tormodfj
Created August 14, 2017 11:56
Show Gist options
  • Save tormodfj/fff90601212889251ce6e38479a81f72 to your computer and use it in GitHub Desktop.
Save tormodfj/fff90601212889251ce6e38479a81f72 to your computer and use it in GitHub Desktop.
Easily Clean Bin/Obj Folders
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