home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 7 Games / 07-Games.zip / bemalph0.zip / to.cmd < prev   
OS/2 REXX Batch file  |  1996-02-29  |  331b  |  21 lines

  1. /* [REXX] */
  2.  
  3. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  4. call SysLoadFuncs
  5.  
  6. 'start pld /c=o'
  7. 'start oseer timetest > time.txt'
  8. do until pid_pld = 0
  9.   call SysSleep 2
  10.   'kill -q pld'
  11.   pid_pld = rc
  12.   say rc
  13. end
  14.  
  15. 'kill -q oseer'
  16. pid_oseer = rc
  17. if pid_oseer <> 0 then 'kill oseer'
  18.  
  19.  
  20. 'type time.txt'
  21.