Rx Window
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