Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
17
Task/Repeat/Batch-File/repeat.bat
Normal file
17
Task/Repeat/Batch-File/repeat.bat
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
@echo off
|
||||
|
||||
:_main
|
||||
setlocal
|
||||
call:_func1 _func2 3
|
||||
pause>nul
|
||||
exit/b
|
||||
|
||||
:_func1
|
||||
setlocal enabledelayedexpansion
|
||||
for /l %%i in (1,1,%2) do call:%1
|
||||
exit /b
|
||||
|
||||
:_func2
|
||||
setlocal
|
||||
echo _func2 has been executed
|
||||
exit /b
|
||||
Loading…
Add table
Add a link
Reference in a new issue