我正在运行一个管道程序。 我想要运行的命令是ls |猫。
int cmd(char** w, int* pipe, int action){
... some code up here
...
int fd;
if(child_pid == 0) {
if (pipe != 0) {
if (action == 0){
fd = dup2(pipe[0], STDIN_FILENO);
close(pipe[0]);
close(pipe[1]);
//close(fd);
}
else if (action == 1){
fd = dup2(pipe[1], STDOUT_FILENO);
close(pipe[0]);
close(pipe[1]);
//close(fd);
}
}
execvp(w[0], w);
printf("Unknown command\n");
exit(0);
}
... some code down here
当我运行代码时,命令ls |猫跑得很好,只是猫没有结束(即管道没有关闭,只是在那里什么都不做)。我认为这是因为我没有关闭流或其他东西,但我对C / IO不够熟悉,无法确切知道。我这样做了吗?
运行此功能的代码就像
int fd[2];
int p = pipe(fd);
cmd(w, fd, 1);
cmd(w, fd, 0);
编辑:你的权利,fatalerror,我错误的辩论
thxs,看起来我只需要关闭父
中的管道[1]答案 0 :(得分:3)
父进程还需要在两次cmd
调用后关闭管道的两端。