Nice DOS command script to remove all .svn files and folders. Some guy’s don’t know already the export function of SVN…
for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *svn') do (
rd /s /q "%%i"
)
Nice DOS command script to remove all .svn files and folders. Some guy’s don’t know already the export function of SVN…
for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *svn') do (
rd /s /q "%%i"
)