我应该实现一个程序来模拟“ls -l | sort -n”的行为,我已经编写了我的代码,根据我的逻辑,一切都应该正常工作,但事实并非如此。在过去的几个小时里,我一直在尝试调试它,因此非常感谢任何额外的输入。这是代码:
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
int main(int argc, char *argv[])
{
int fd[2];
int errcheck;
errcheck = pipe(fd);
printf("Errcheck after pipe call: %d\n", errcheck);
pid_t childpid;
childpid=fork();
if(childpid==0)
{
printf("Entering child\n");
errcheck = dup2(fd[1], STDOUT_FILENO);
printf("Errcheck after dup2 child: %d\n", errcheck);
close(fd[0]);
execl("bin/ls", "ls", "-l", NULL);
}
printf("Before sort call\n");
errcheck = dup2(fd[0], STDIN_FILENO);
printf("Errcheck after dup2 parent: %d\n", errcheck);
close(fd[1]);
execl("/usr/bin/sort", "sort", "-n", NULL);
}
“进入孩子”后程序卡住了,我真的不明白为什么孩子的dup2调用没有完成......
预先感谢您的任何帮助。