如何将所有输出重定向到/ dev / null的

编程入门 行业动态 更新时间:2024-10-25 02:20:12
本文介绍了如何将所有输出重定向到/ dev / null的的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我想在后台运行一个程序(谷歌铬),但是从输出任何消息到终端prevent它。

I want to run a program (google-chrome) in the background, but prevent it from outputting any messages to the terminal.

我试着这样做:

google-chrome 2>&1 1>/dev/null &

然而,终端还填补了没有像信息[5746:5746:0802/100534:ERROR:object_proxy.cc(532)未能调用方法:org.chromium.Mtpd.EnumerateStorag。 ..

我是什么做错了吗?我怎么所有的输出重定向到/ dev / null的?

What am I doing wrong? How do I redirect ALL the output to /dev/null?

推荐答案

重定向操作符是从左向右。你做错了什么是放2>&安培; 1首,这点2相同的地方为1目前是指向这是本地终端屏幕上,因为你没有重定向1呢。你需要做的是以下任一操作:

redirection operators are evaluated left-to-right. what you did wrong was put 2>&1 first, which points "2" to the same place as "1 currently is pointed to" which is the local terminal screen because you have not redirected 1 yet. What you need to do is either of the following:

2>/dev/null 1>/dev/null google-chrome &

2>/dev/null 1>&2 google-chrome &

重定向运营商的有关该命令的位置并不重要。你可以之前或命令后,把它们。

the placement of the redirect operators in relation to the command does not matter. you can put them before or after the command.

更多推荐

如何将所有输出重定向到/ dev / null的

本文发布于:2023-07-06 07:32:56,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1047322.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:如何将   重定向   null   dev

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!