You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
303 B
19 lines
303 B
setlocal
|
|
|
|
REM this wrapper script is used by startploc.bat and startmir.bat
|
|
REM to implement semaphores for the 2 whistler.bat processes
|
|
|
|
set semfile=%1
|
|
|
|
set runscript=%2
|
|
|
|
echo the runscript is %runscript%
|
|
|
|
SHIFT /2
|
|
|
|
call %runscript% %2 %3 %4 %5 %6 %7 %8 %9
|
|
|
|
del %semfile%
|
|
|
|
|
|
endlocal
|