dup和dup2命令

时间:2012-10-18 16:41:27

标签: c operating-system dup2 dup

我要做的是将ls命令的输出放在一个文件中,然后使用grep命令从该文件中读取并将其存储在一个新文件中并根据该文件中的内容进行打印终端上的东西。

因此,存在以下输出重定向:

1)从标准输出到称为oioioi.txt的文件(对于ls命令)
2)从oioioi.txt到grep.txt(对于grep命令)
3)从grep.txt回到终端

这是我的代码:

#include<stdio.h>
#include<sys/wait.h>
#include<unistd.h>
#include<errno.h>
#include<stdlib.h>
#include<string.h>
int main(void)
{
        //if(!fork())
                //execl("/bin/grep","grep","input","oioioi.txt",0);
        FILE *fp1,*fp2;
        int fd,fd2;
        fp1=fopen("oioioi.txt","w+");
        fp2=fopen("grep.txt","w+");
        fd=fileno(fp1);
        fd2=fileno(fp2);
        char filename[40],id[40],marks[40],filename2[40];
        scanf("%s %s %s",filename,id,marks);
        char *execarg2[]={"ls",0};
        dup2(fd,1); //1st redirection
        //close(1);
        if(!fork())
        {
                execv("/bin/ls",execarg2);
        }
        sleep(1);
        wait(NULL);
        //dup(fd2);
        close(fd);
        dup(1);
        dup2(fd2,1); //2nd redirection
        if(!fork())
        {
                //sleep(1);
                execl("/bin/grep","grep",filename,"oioioi.txt",0);
        }
        sleep(1);
        wait(NULL);
        close(fd2);
        dup2(1,fd2); //3rd one which is the incorrect one
        fscanf(fp2,"%s",filename2);
                printf("%s",filename2);
        if(strcmp(filename2,filename)==0)
                printf("FILE FOUND");

        return(0);
}

我认为第三个是不正确的。但是我也不确定前两个。如果你们可以查看我的代码并告诉我哪里出错了,或者给我一个使用dup进行以下重定向的示例,我真的很感激

1 个答案:

答案 0 :(得分:0)

问题始于您的第一次重拨:dup(fd, 1);。在该行中,您将失去标准输出到终端。如果你想秘密保留对它的引用,你事先dup(STDOUT_FILENO);

接下来,对printf的后续调用实际上会被重定向到fd2而不是stdout的原始fd(1)。

这里潜伏着一些其他问题,但就我能够理解这一点而言(请参阅我对该问题的评论)。

n.b。

dup2的联合页面声明,如果有必要,它会关闭新的fd(第二个arg),使close进入

close(fd2);
dup(1, fd2);

多余的。