RE: Programming pipes to and from another program

2002-09-25 Thread Jeff AA
tember 2002 16:20 > To: Jeff AA > Cc: [EMAIL PROTECTED] > Subject: RE: Programming pipes to and from another program > > > > > >If *nix, look at help for the open3 function. Attached as a > text file is > > > >the little run class that I use to do

RE: Programming pipes to and from another program

2002-09-25 Thread Peter_Farrar
>If *nix, look at help for the open3 function. Attached as a text file is > >the little run class that I use to do this. > >Here is an example of how to use this class to encapsulate GPG, where >the passphrase gets written to stdin of the child process, and the >results are reaped from the child

RE: Programming pipes to and from another program

2002-09-25 Thread Bob Showalter
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 25, 2002 8:52 AM > To: [EMAIL PROTECTED] > Subject: Programming pipes to and from another program > > ... > Is there a simple (or even complex) way to open a two way > pipe to another >

RE: Programming pipes to and from another program

2002-09-25 Thread Jeff AA
If *nix, look at help for the open3 function. Attached as a text file is the little run class that I use to do this. Here is an example of how to use this class to encapsulate GPG, where the passphrase gets written to stdin of the child process, and the results are reaped from the childs stder