Board logo

标题: 批处理如何等待并行的脚本执行结束后再退出? [打印本页]

作者: ToPac    时间: 2012-5-11 15:59     标题: 批处理如何等待并行的脚本执行结束后再退出?

比如test.bat里有
start test1_1.bat
start test1_2.bat
并行执行两个脚本
我想在test.bat里获取到这两个脚本执行结束后再退出
而不是启动完两个批处理就立马退出了
请问我要怎么写呢?
作者: ToPac    时间: 2012-5-11 16:13

大家看到的能帮帮忙么~~~工作急用~~~~
作者: apang    时间: 2012-5-11 16:36

test.bat
  1. @echo off
  2. start test1_1.bat
  3. start test1_2.bat
  4. :11
  5. if not exist 1_ok.txt goto :11
  6. if not exist 2_ok.txt goto :11
  7. exit
复制代码
test1_1.bat
  1. @echo off
  2. ....
  3. cd.>1_ok.txt
  4. exit
复制代码
test1_2.bat
  1. @echo off
  2. ...
  3. cd.>2_ok.txt
  4. exit
复制代码

作者: canyuexiaolang    时间: 2012-5-11 18:07

test.bat
  1. test1_1.bat
  2. test1_2.bat
复制代码
start貌似不用。。。
作者: douqu    时间: 2012-5-12 01:16

本帖最后由 douqu 于 2012-5-12 01:17 编辑

start  /wait 这个参数不会用吗?

start /wait test1_1.bat
start /wait test1_2.bat

不就行了么
作者: canyuexiaolang    时间: 2012-5-12 07:43

回复 5# douqu

话说直接调用不就行了- -..




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2