0

我应该实现一个程序来模拟“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调用没有完成......

预先感谢您的任何帮助。

4

1 回答 1

0

是否有理由不使用 dirent 列出文件 -opendir readdir等等?或者这是学校的作业?如果它用于生产,请考虑使用 dirent.h 和 stat.h。

对于功课,你需要做什么取决于你的教授。如果是这样,请将其标记为作业。

于 2012-05-19T02:37:14.450 回答