Tuesday, July 26, 2005

for loop in dos batch programming

Problem: I was wondering how a for loop would work in ms-dos batch programming and identified the following

solution: for /L %i in (,,) do command

for /L %i in (0,1,100) do echo %i%

0 Comments:

Post a Comment

<< Home