home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / vselansp.zip / GETQUE.CMD < prev    next >
OS/2 REXX Batch file  |  1995-09-18  |  364b  |  15 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 command
  7.     
  8.     command
  9.     retval = rc
  10.     say rc
  11.     myfile = "C:\VSESTAT.FIL"
  12.     x = LINEOUT(myfile,retval)
  13.     x = LINEOUT(myfile) 
  14. return
  15.