Quantcast
Channel: For Loop counting from 1 to n in a windows bat script - Server Fault
Browsing latest articles
Browse All 4 View Live

Answer by fmoraesjr for For Loop counting from 1 to n in a windows bat script

Directly from the command line: for /L %n in (1,1,100) do @echo %n Using a batch file: @echo off for /L %%n in (1,1,100) do echo %%n Displays: 1 2 3 ... 100

View Article


Answer by Goyuix for For Loop counting from 1 to n in a windows bat script

You can do it similarly like this: ECHO Start of Loop FOR /L %i IN (1,1,5) DO ( ECHO %i ) The 1,1,5 is decoded as: (start,step,end) Also note, if you are embedding this in a batch file, you will need...

View Article


Answer by Andy for For Loop counting from 1 to n in a windows bat script

Syntax is FOR %%A IN (1 2 3) DO ECHO %%A Good article here and XP specifics here

View Article

For Loop counting from 1 to n in a windows bat script

I need to run a windows command n times within a bat script file. I know how to do this in various programming languages but cannot manage to get it right on the windows command line :-( I would...

View Article
Browsing latest articles
Browse All 4 View Live