我C编码的一个基本的壳,用于执行基本命令它会执行命令ls,ls -al,ls -al | more等。
ls
ls -al
ls -al | more
我想在我的外壳中执行以下命令。喜欢 ;
ls -al > a.txt
这将给我a.txt包含ls -al过程输出的文件。我找到了一个解决方案,它正在像这样更改shell中的命令[command1] | tee [filename]。在这种情况下,它将更改ls -al > a.txt为ls -al | tee a.txt。但是此过程会将输出也提供给文件和终端。如何在终端中停止打印输出。
a.txt
[command1] | tee [filename]
ls -al | tee a.txt
还是有比使用tee命令更好的解决方案。提前致谢…
这是我用dup2测试的结果
更微妙的一点是在正确的时间记住fflush :)否则,您将得到非常令人惊讶的结果。
另外,最好fileno不要使用硬编码1(stdout)2(stderr)。
fileno
1
2
重定向stdin留给读者练习
stdin
#include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <unistd.h> int main(int argc, const char *argv[]) { int out = open("cout.log", O_RDWR|O_CREAT|O_APPEND, 0600); if (-1 == out) { perror("opening cout.log"); return 255; } int err = open("cerr.log", O_RDWR|O_CREAT|O_APPEND, 0600); if (-1 == err) { perror("opening cerr.log"); return 255; } int save_out = dup(fileno(stdout)); int save_err = dup(fileno(stderr)); if (-1 == dup2(out, fileno(stdout))) { perror("cannot redirect stdout"); return 255; } if (-1 == dup2(err, fileno(stderr))) { perror("cannot redirect stderr"); return 255; } puts("doing an ls or something now"); fflush(stdout); close(out); fflush(stderr); close(err); dup2(save_out, fileno(stdout)); dup2(save_err, fileno(stderr)); close(save_out); close(save_err); puts("back to normal output"); return 0; }