Source code of Windows XP (NT5)
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.

13 lines
485 B

  1. @if "%1"=="" goto Usage
  2. @for /F "tokens=1,2,3* delims=, " %%i in (locinfo.txt) do @call multiloc.cmd %1 %%i %%j %%k %%l daytona
  3. @for /F "tokens=1,2,3* delims=, " %%i in (locinfo.txt) do @call multiloc.cmd %1 %%i %%j %%k %%l win9x
  4. @for /F "tokens=1,2,3* delims=, " %%i in (locinfo.txt) do @call singleloc.cmd %1 %%i %%j %%k %%l daytona
  5. @for /F "tokens=1,2,3* delims=, " %%i in (locinfo.txt) do @call singleloc.cmd %1 %%i %%j %%k %%l win9x
  6. @goto End
  7. :Usage
  8. @echo %0 [file name]
  9. :end