Created
October 31, 2017 01:33
-
-
Save dongbum/514c0abecb9affcc9bdf76dae54181dd to your computer and use it in GitHub Desktop.
하드디스크에 존재하는 .svn 폴더를 모두 삭제하는 윈도우 스크립트
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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