home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!vnet.ibm.com
- From: jnestoriak@vnet.ibm.com (John Nestoriak III)
- Message-ID: <19930112.062118.250@almaden.ibm.com>
- Date: Tue, 12 Jan 93 09:18:24 EST
- Newsgroups: comp.os.os2.programmer
- Subject: Re: How can progs use the REXX stack?
- Disclaimer: These views are mine, mine, mine. IBM can't have 'em.
- News-Software: UReply 3.0
- References: <93012.031523CXC19$@psuvm.psu.edu>
- Lines: 15
-
- In <93012.031523CXC19$@psuvm.psu.edu> <CXC19$@psuvm.psu.edu> writes:
- >Does anyone know how non-REXX programs can put data
- >onto the REXX stack? It would be nice to be able to
- >do something like dir *.txt > stk . Is something
- >like this possible?
-
-
- Use:
- dir *.txt | rxqueue
-
- It can be read like:
- while queued() > 0
- parse pull x
- say x
- end
-