in reply to Re: open pipe without close
in thread open pipe without close

Thank you very much for reply cdarke,
The program on the other end is run in window and it connect to the unix server then return the data base on the parameter pass to it. I think this program is reading from the pipe from unix.
The child process will end when the program done returning data.
I take out the close command and i don't see any problem, but i just don't know what is the affect if I did that.

Replies are listed 'Best First'.
Re^3: open pipe without close
by cdarke (Prior) on Feb 27, 2010 at 14:49 UTC
    Anonymous pipes (the type that you generate using | ) can only run between related processes on the same machine, and this applies to Windows and UNIX. So there must be some other software involved for the network communication.