Using svn in CLI with Batch

rgqancy發表於2015-07-27

del %~n0.txt
@echo off
setlocal EnableDelayedExpansion
for /f "delims=" %%i in ('DIR /A:D /B') do (
echo ==================================================== >> %~n0.txt
REM svn info %%i >> %~n0.txt
REM svn update %%i >> %~n0.txt
svn cleanup %%i
)
%~n0.txt

相關文章