Skip to content

Instantly share code, notes, and snippets.

@dieseltravis
Created January 29, 2010 20:21
Show Gist options
  • Save dieseltravis/290085 to your computer and use it in GitHub Desktop.
Save dieseltravis/290085 to your computer and use it in GitHub Desktop.
delete .svn and _svn stuff
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S *_svn*') DO RMDIR /S /Q "%%G"
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S *.svn*') DO RMDIR /S /Q "%%G"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment