for /D /R %%i in (*.*) do (
cd %%i
if exist .svn (
rd .svn /s /q
)
if exist CVS (
rd CVS /s /q
)
cd ..
)
for /D /R %%i in (*.*) do (
cd %%i
if exist .svn (
rd .svn /s /q
)
if exist CVS (
rd CVS /s /q
)
cd ..
)
7668
6290

被折叠的 条评论
为什么被折叠?