如何多次打开另一个批处理文件?

时间:2014-06-13 20:40:25

标签: windows batch-file

我想知道如何多次打开另一个批处理文件的批处理文件 我目前正在使用此代码

set counter=0
:loop
call Pinger.bat
SET /A counter=%counter%+1
if %counter% GTR 100
    (GOTO exit) 
else 
    (GOTO loop)
:exit
exit

但只要打开另一个的第一个,它就会用这个代码关闭bat文件。

1 个答案:

答案 0 :(得分:1)

if语句的语法错误,请参阅下面的固定版本:

set counter=0
:loop
call Pinger.bat
SET /A counter=%counter%+1
if %counter% GTR 100 (
    GOTO exit 
) else (
    GOTO loop
)
:exit
exit