DOS FOR loop on range through command line - Stack Overflow
Batch File Solution It'd probably be easy to write some sort of batch (.bat) file: SET COUNT=0 :MyLoop IF "%COUNT%" == "1000" GOTO EndLoop myProg.exe SET /A COUNT+=1 GOTO MyLoop :EndLoop But isn't there an easy way to do this from the ...
stackoverflow.com |