Skip to content

Instantly share code, notes, and snippets.

@mbmccormick
Created October 8, 2011 20:20
Show Gist options
  • Save mbmccormick/1272822 to your computer and use it in GitHub Desktop.
Save mbmccormick/1272822 to your computer and use it in GitHub Desktop.
Remove SVN directories from Windows
for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *svn') do ( rd /s /q "%%i" )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment