looping
Posted: 19 Jan 2011 20:49
how can i make a batch file loop a set amount of times?
Code: Select all
@echo off &setlocal
for /l %%i in (1,1,10) do (
echo iteration # %%i
)
pause
Code: Select all
for /?
Code: Select all
FOR /L %variable IN (start,step,end) DO command [command-parameters]
The set is a sequence of numbers from start to end, by step amount.
So (1,1,5) would generate the sequence 1 2 3 4 5 and (5,-1,1) would
generate the sequence (5 4 3 2 1)