sh 将stderr重定向到stdout

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 将stderr重定向到stdout相关的知识,希望对你有一定的参考价值。

# Redirect stdout to /dev/null, and then redirect stderr to stdout
command >/dev/null 2>&1

# You can pipe it to another command
command >/dev/null 2>&1 | grep 'your word'

以上是关于sh 将stderr重定向到stdout的主要内容,如果未能解决你的问题,请参考以下文章

将stdout和stderr重定向到一个文件,也重定向到linux中的控制台[重复]

Shell:将stdout重定向到/ dev / null,将stderr重定向到stdout [duplicate]

使用系统命令将stdout和stderr输出重定向到文件在perl中不起作用[重复]

使用python sh模块,如何保存组合的stdout和stderr?

如何将stdout和stderr都重定向到文件[重复]

将Loggers`消息重定向到sys.stdout和sys.stderr