我如何捕获编译器的所有输出到一个文件,以及需要显示输出

时间:2022-11-21 13:56:06

The below program redirects all my output to log file. I need to display all the output along with log file. How can this be achieved?

下面的程序将我的所有输出重定向到日志文件。我需要显示所有的输出以及日志文件。如何实现这一点?

$ gcc test.c
$ ./a.out > log.txt
$

1 个解决方案

#1


3  

You could use tee:

你可以用三通:

$ ./a.out | tee log.txt

#1


3  

You could use tee:

你可以用三通:

$ ./a.out | tee log.txt