我想知道如何多次打开另一个批处理文件的批处理文件 我目前正在使用此代码
set counter=0
:loop
call Pinger.bat
SET /A counter=%counter%+1
if %counter% GTR 100
(GOTO exit)
else
(GOTO loop)
:exit
exit
但只要打开另一个的第一个,它就会用这个代码关闭bat文件。
答案 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