Created
October 9, 2009 18:32
-
-
Save macbeth76/206232 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| setLocal EnableDelayedExpansion | |
| REM set /p X=how many time do you want to run | |
| set X=10 | |
| set N=0 | |
| :loop | |
| if !N! gtr !X! goto :eof | |
| echo your task goes here %N% | |
| set /a N+=1 | |
| goto :loop | |
| :eof |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment