批处理时,我希望运行10次,然后运行goto continue
。
我该怎么做?
答案 0 :(得分:2)
这是一种方法:
@echo off
setlocal enabledelayedexpansion
echo before
set i=0
:loop1
echo something 10 times
set /a i+=1
if !i!==10 goto continue
goto loop1
:continue
echo after
exit /b 0
答案 1 :(得分:0)
最简单的方法是for /L
循环。
for /L %%A in (1,1,10) do (
rem your code here
)
goto continue
for /L
循环的格式为(start
,step
,end
),因此(1,1,10)表示从1开始并计数到10按1s。