我正在尝试ls -la | wc
#include<stdio.h>
#include<stdlib.h>
#include<sys/types.h>
#include<sys/wait.h>
#include<unistd.h>
int main(int argc, char **argv)
{
int pipes=3;
char *ls[] = {"ls","-la",NULL};
char *wc[] = {"wc",NULL};
char *base64[] = {"base64","-w0",NULL};
//char **commands[] = {ls,wc,base64};
int fds[pipes][2];
for(int i=0;i<pipes;i++)
{
int err = pipe(fds[i]);
if(err == -1)
{
perror("Pipe failed.\n");
}
}
int status;
pid_t childPid;
//Child 1.
if((childPid = fork()) == 0)
{
dup2(fds[0][1],1);
for(int i=0;i<pipes;i++)
{
close(fds[i][0]);
close(fds[i][1]);
}
execvp(ls[0],ls);
exit(0);
}
else if(childPid == -1)
{
perror("Child 1 failed.\n");
}
// Second child.
if((childPid = fork()) == 0)
{
dup2(fds[0][0],0);
for(int i=0;i<pipes;i++)
{
close(fds[i][0]);
close(fds[i][1]);
}
execvp(wc[0],wc);
}
else if(childPid == -1)
{
perror("Child 2 failed.\n");
}
for(int i=0;i<pipes;i++)
{
close(fds[i][0]);
close(fds[i][1]);
}
waitpid(childPid,&status,WUNTRACED|WNOHANG);
return 0;
}
超出预期:
root @ danial#gcc -o pip pip.c
root @ danial#。/ pip
10 83 436
我得到的输出:
root @ danial#。/ pip
root @ danial#10 83436
光标停留在这里,直到按Enter键为止。
我试图在没有管道的情况下这样做,只是编写了一个简单的程序:
#include<stdio.h>
#include<stdlib.h>
#include<sys/types.h>
#include<unistd.h>
#include<sys/wait.h>
int main(int argc, char **argv)
{
if(fork() == 0)
{
execlp("ls","ls","-la",NULL);
exit(0);
}
return 0;
}
发生了什么事
root @ danial#。/ test
root @ danial#总数84
drwxr-xr-x 3 root root 4096 Mar 30 06:49。
drwxr-xr-x 9 root root 4096 Mar 29 09:33 ..
-rwxr-xr-x 1根根16960 Mar 30 06:49点
-rw-r--r-- 1个根目录1310年3月30日06:48 pip.c
答案 0 :(得分:1)
问题是这个
waitpid(childPid,&status,WUNTRACED|WNOHANG);
使用WNOHANG
,您告诉waitpid
轮询状态,然后立即返回 ,而实际上等待着。
当waitpid
调用返回时,您退出父进程,而留下两个 子进程。
当父进程退出时发生的事情是它的父进程(shell)接管并打印提示。 然后您的子进程打印其输出。您按下的 Enter 键可“清除”输出,只是外壳的空输入。
您需要同时等待子进程 。