looping
Moderator: DosItHelp
-
- Posts: 44
- Joined: 01 Jan 2011 20:54
looping
how can i make a batch file loop a set amount of times?
Re: looping
This can be done by FOR /L.
Regards
aGerman
Code: Select all
@echo off &setlocal
for /l %%i in (1,1,10) do (
echo iteration # %%i
)
pause
Regards
aGerman
-
- Posts: 44
- Joined: 01 Jan 2011 20:54
Re: looping
what do the different fields do & how do i them
-
- Posts: 79
- Joined: 13 Dec 2010 10:32
Re: looping
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)