在下面的代码中,一个进程创建了一个子进程(fork()),然后该子进程通过调用exec()来替换自己。exec的标准输出是写在管道而不是 shell 中的。然后父进程从管道中读取 exec 使用 while (read(pipefd[0], buffer, sizeof(buffer)) != 0) 写入的内容
有人可以告诉我如何做与上述完全相同的事情,但有 N 个子进程(如上所述用 exec 替换自己)。
int pipefd[2];
pipe(pipefd);
if (fork() == 0)
{
close(pipefd[0]); // close reading end in the child
dup2(pipefd[1], 1); // send stdout to the pipe
dup2(pipefd[1], 2); // send stderr to the pipe
close(pipefd[1]); // this descriptor is no longer needed
exec(...);
}
else
{
// parent
char buffer[1024];
close(pipefd[1]); // close the write end of the pipe in the parent
while (read(pipefd[0], buffer, sizeof(buffer)) != 0)
{
}
}