home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / os / os2 / programm / 7522 < prev    next >
Encoding:
Internet Message Format  |  1993-01-12  |  749 b 

  1. Path: sparky!uunet!vnet.ibm.com
  2. From: jnestoriak@vnet.ibm.com (John Nestoriak III)
  3. Message-ID: <19930112.062118.250@almaden.ibm.com>
  4. Date: Tue, 12 Jan 93 09:18:24 EST
  5. Newsgroups: comp.os.os2.programmer
  6. Subject: Re: How can progs use the REXX stack?
  7. Disclaimer: These views are mine, mine, mine.  IBM can't have 'em.
  8. News-Software: UReply 3.0
  9. References: <93012.031523CXC19$@psuvm.psu.edu>
  10. Lines: 15
  11.  
  12. In <93012.031523CXC19$@psuvm.psu.edu> <CXC19$@psuvm.psu.edu> writes:
  13. >Does anyone know how non-REXX programs can put data
  14. >onto the REXX stack?  It would be nice to be able to
  15. >do something like  dir *.txt > stk .  Is something
  16. >like this possible?
  17.  
  18.  
  19. Use:
  20.  dir *.txt | rxqueue
  21.  
  22. It can be read like:
  23.  while queued() > 0
  24.    parse pull x
  25.    say x
  26.  end
  27.