首页 > 编程 > C++ > 正文

深入分析C++中执行多个exe文件方法的批处理代码介绍

2020-01-26 16:12:38
字体:
来源:转载
供稿:网友

不同目录下的多个二进制执行文件的批处理代码
 
@echo off
pushd "G:/apache-activemq-5.5.0-bin/apache-activemq-5.5.0/bin/"
start /min ""   G:/apache-activemq-5.5.0-bin/apache-activemq-5.5.0/bin/activemq.bat
popd

ping 127.0.0.1  -n 5

pushd "G:/backup2011-10-31/exchangePlatform/bin"
start  /min "" G:/backup2011-10-31/exchangePlatform/bin/mjs_start.bat
popd
 
rem pushd "G:/backup2011-10-31/exchangePlatform/bin"
rem start  /min "" G:/backup2011-10-31/exchangePlatform/bin/mjs_start.bat
rem popd
 

ping 127.0.0.1  -n 10

pushd "G:/HyCode/uniPlatform/bin"
start  G:/HyCode/uniPlatform/bin/run.bat
popd

pause
==================================================================================================
相同同目录下的多个二进制执行文件的批处理代码(mjs_start.bat
@echo off

echo starting tradeSys...
start /min ""  tradeSys1021.exe
ping 127.0.0.1  -n 5

echo starting matchSys...
start /min "" matchSys.exe run
ping 127.0.0.1  -n 2

echo starting CalculateSys...
start /min "" CalculateSys.exe run
ping 127.0.0.1  -n 2

echo starting quotSys...
start /min "" quotSys.exe run
ping 127.0.0.1  -n 2

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表