码迷,mamicode.com
首页 > 其他好文 > 详细

Using svn in CLI with Batch

时间:2015-07-27 14:40:24      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

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

Using svn in CLI with Batch

标签:

原文地址:http://www.cnblogs.com/rgqancy/p/4679845.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!