home *** CD-ROM | disk | FTP | other *** search
/ AM/FM: Amiga Musicians' Freeware Magazine 13 / AM-FM 13.adf / utilities / RXTRACKER.run / rexx / startrxt.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1991-02-07  |  228 b   |  14 lines

  1. /* Start up RxTracker from ARexx */
  2.  
  3. /* see if RxTracker is already around */
  4. if (show(P,RXTRACKER)) then
  5.   exit
  6.  
  7. /* if not, run it */
  8. address command "run rxtracker"
  9.  
  10. /* wait for it to get started */
  11. address command "wait 2"
  12.  
  13.  
  14.