我应该实现一个具有重定向功能的 shell,但是我在如何使用文件描述符方面遇到了麻烦。在我的 test.c 文件中,我正在尝试将测试从“python --version”传输到一个名为“out”的文件中。
int main(int argc, char *argv[], char *const envp[])
{
/***/TOKENIZER *tester;
int pid = 0;
int pipefd[2];
char buffer = 0;
pipe(pipefd);
pid = fork();
pipefd[1] = open("out", O_WRONLY | O_TRUNC | O_CREAT, S_IRUSR | S_IRGRP | S_IWGRP | S_IWUSR);
if(pid == 0){
close(pipefd[1]);
dup2(pipefd[0], STDIN_FILENO);
close(pipefd[0]);
while(read(STDIN_FILENO, &buffer, 1) > 0){
write(STDOUT_FILENO, &buffer, 1);
}
close(pipefd[0]);
_exit(EXIT_SUCCESS);
}else{
close(pipefd[0]);
dup2(pipefd[1], STDOUT_FILENO);
close(pipefd[1]);
write(STDOUT_FILENO, "asdsd\n", 6);
char* ver[2];
ver[1] = "--version";
execvp("python", ver);
exit(EXIT_SUCCESS);
}
free(tester);
return 0;
编辑:意识到我正在混合重定向和管道的部分。这是我尝试运行的一些重定向代码。
int out = open("output.txt", O_WRONLY | O_TRUNC | O_CREAT, S_IRUSR | S_IRGRP | S_IWGRP | S_IWUSR);
dup2(out, 1);
close(out);
char* ver[2];
ver[1] = "--version";
execvp("python", ver);
exit(EXIT_SUCCESS);
return 0;
我试图将 Python 版本控制到 output.txt 中,但我似乎遗漏了一些东西,因为它不起作用。
编辑 2:看起来它正在执行,但它输出到标准输出而不是 output.txt。
int out = open("output.txt", O_WRONLY | O_TRUNC | O_CREAT, S_IRUSR | S_IRGRP | S_IWGRP | S_IWUSR);
dup2(out, STDOUT_FILENO);
char* ver[3];
ver[0] = "python";
ver[1] = "--version";
ver[2] = NULL;
execvp("python", ver);
perror("exec");
return 0;