home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / bsys098b.zip / AREA.CMD < prev    next >
OS/2 REXX Batch file  |  1993-12-16  |  536b  |  27 lines

  1. @ECHO OFF
  2. GOTO START
  3. |
  4. | Here you should put commands to start external areas!
  5. |
  6. |   %1 & %2 - Node number
  7. |   %3      - Com port
  8. |   %4      - Port speed (/100)
  9. |   %5      - Port base address
  10. |   %6      - Port irq vector
  11. |   %7      - External area area-code
  12. |
  13. | Example-call: AREA.CMD 3 003 1 192 03F8 3 QWK
  14. |
  15. :START
  16. IF "%7"=="QWK" GOTO QWK
  17. GOTO END
  18. |
  19. | From here you write the command needed to start your areas.
  20. |
  21. :QWK
  22. QWK.EXE %3 %4
  23. GOTO END
  24. |
  25. | Every external area should "GOTO END" after exiting
  26. |
  27. :END