Saved Bookmarks
| 1. |
Solve : Looping a batch file N times- How?? |
|
Answer» I have a batch file that CALLS some Fortran programs and does some file copies etc. I want to run this batch file N number of TIMES and then stop. How can I do this without keyboard intervention ie run the batch file N times and stop automatically. Thanks. FFor /L %%A IN (1, 1, n) DO Call MyBat |
|