批处理指令_同步数据脚本
Posted dabaicai0703
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批处理指令_同步数据脚本相关的知识,希望对你有一定的参考价值。
@echo off
set Path1=H:dir1
set Path2=H:dir2
set Path3=H:dir3
set Path4=H:dir4
cd C:Program FilesTortoiseSVNin
start TortoiseProc.exe /command:update /path:"%Path1%*%Path2%*%Path3%*%Path4%" /closeonend:3
@pause
for /f "delims=" %%i in ("%Path1%") do (copy "%%i" "%Path3%")
for /f "delims=" %%i in ("%Path2%") do (copy "%%i" "%Path4%")
@pause
start TortoiseProc.exe /command:commit /path:"%Path3%" /closeonend:0
start TortoiseProc.exe /command:commit /path:"%Path4%" /closeonend:0
以上是关于批处理指令_同步数据脚本的主要内容,如果未能解决你的问题,请参考以下文章