I want to write a c program in which i create multiple child processes and redirect their inputs and outputs to different file descriptors .I googled a lot but couldn't find relevant results. Please help .
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Start with dup. You really need to search a bit harder. There is plenty of material on this. |
|||
|
|
|
The answer depends on your operating system. On UNIX-like systems, you use |
|||
|
|
My favorite is forkpty. This function forks a child and give you a file descriptor to its stdin/stdout. You can use exec after forking, |
|||
|
|