Skip to content

Instantly share code, notes, and snippets.

@dongbum
Created October 31, 2017 01:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dongbum/514c0abecb9affcc9bdf76dae54181dd to your computer and use it in GitHub Desktop.
Save dongbum/514c0abecb9affcc9bdf76dae54181dd to your computer and use it in GitHub Desktop.
하드디스크에 존재하는 .svn 폴더를 모두 삭제하는 윈도우 스크립트
@FOR /R %1 %%1 IN (.svn) DO RMDIR /S /Q "%%1"
@PAUSE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment