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
$
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
$