系统相关
首页 > 系统相关> > linux – 将所有输出重定向到文件

linux – 将所有输出重定向到文件

作者:互联网

参见英文答案 > How can I redirect and append both stdout and stderr to a file with Bash?                                    7个
我知道在Linux中,要将屏幕输出重定向到文件,我可以使用>或发球台.但是,我不确定为什么部分输出仍然输出到屏幕而不写入文件.

有没有办法将所有输出重定向到文件?

解决方法:

该部分写入stderr,使用2>重定向它.例如:

foo > stdout.txt 2> stderr.txt

或者如果你想要在同一个文件中:

foo > allout.txt 2>&1

注意:这适用于(ba)sh,检查shell是否有正确的语法

标签:bash,linux,io-redirection
来源: https://codeday.me/bug/20190911/1804482.html