我想要做的是将 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 进行以下重定向的例子,我真的很感激