CompuServe Messages

Rx Window

    06-Apr-93 01:40:20
Sb: #33940-Rx Window
Fm: Jim Dutton 72237,561
To: tom miller 72760,3055
Tom, Basically, to use PIPE:, just treat it as a file (eg; OPEN it, such as PIPE:MyCommand), and then use the AmigaDOS redirection to 'pipe' the output to PIPE:MyCommand. From there, you just use READLN on your OPENed PIPE:.. device. If ~open(pipe,"PIPE:MyCommand") then Do; say '** Error opening PIPE: **'; Exit 32; End address 'COMMAND' 'LIST >PIPE:MyCommand' ….. Do while ~eof(pipe) parse value readln(pipe) with …. … … End foo = close(pipe) Real World:southern Illinois,USA Internet:ca0008 at siucvmb.siu.edu