我应该实现一个可模拟“ 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调用未完成...
预先感谢您的任何帮助。
最佳答案
是否有理由不使用Dirent列出文件-opendir
readdir
等?还是这是学校作业?如果要用于生产,请考虑使用dirent.h和stat.h。
对于功课,您需要由教授决定。如果是这种情况,请将其标记为作业。