home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / vse-esa.zip / RUN.CMD < prev    next >
OS/2 REXX Batch file  |  1994-04-14  |  317b  |  12 lines

  1. /* run.cmd - run program and signal completion on rexx que */
  2. /* required by VX-REXX to allow firing off a SEND  RECEIVE */
  3. /* command in a OS/2 window and signalling calling program */
  4. /* when complete */
  5. Main:
  6.     parse arg queue commands
  7.     
  8.     commands
  9.     retval = rc
  10.     call RXQueue "SET", queue
  11.     push rc
  12. return