Bash - 输出重定向

发布于 2024-11-15 12:27:06 字数 50 浏览 1 评论 0原文

我试图将错误输出重定向到文件和终端并丢弃标准输出,但我无法弄清楚。有人知道该怎么做吗?

I'm trying to redirect error output to both a file and the terminal and throw away standard output, but I can't figure it out. Does anybody know how to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我不吻晚风 2024-11-22 12:27:06
myCommand 2>&1  1>/dev/null | tee /path/to/some/file.txt

STDOUT 被黑洞进入 /dev/null

STDERR 被重定向到 STDOUT

tee 接收 STDOUT 并重新回显它并将其写入文件

myCommand 2>&1  1>/dev/null | tee /path/to/some/file.txt

STDOUT gets black-holed into /dev/null

STDERR gets redirected to STDOUT

tee receives STDOUT and re-echoes it as well as writing it to file

野味少女 2024-11-22 12:27:06

请参阅这篇文章。您将需要使用 tee 命令来定向多个方向。

http://www.linuxforums .org/forum/programming-scripting/163161-redirecting-stdout-file-terminal-stderr-file.html

See this post. You will need to use the tee command to direct in multiple directions.

http://www.linuxforums.org/forum/programming-scripting/163161-redirecting-stdout-file-terminal-stderr-file.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文