隐藏Linux中的wget输出

时间:2015-05-08 12:07:07

标签: linux bash wget

当我使用wget时,我不想看到任何消息。

我尝试wget -q -O个选项并重定向到/dev/null,但我仍然看到不需要的消息。

修改 对不起大家,我的脚本中有另一个wget打印消息:) &> /dev/null对我来说已经足够了。

1 个答案:

答案 0 :(得分:54)

为什么不使用-q

来自man wget

-q
--quiet
   Turn off Wget's output.

测试

$ wget www.google.com
--2015-05-08 14:07:42--  http://www.google.com/
Resolving www.google.com (www.google.com)... 
  (...)
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘index.html’

    [ <=>                                                                                       ] 17,913      --.-K/s   in 0.01s   

2015-05-08 14:07:42 (1.37 MB/s) - ‘index.html’ saved [17913]

$ wget -q www.google.com
$