当我使用wget
时,我不想看到任何消息。
我尝试wget
-q
-O
个选项并重定向到/dev/null
,但我仍然看到不需要的消息。
修改
对不起大家,我的脚本中有另一个wget打印消息:) &> /dev/null
对我来说已经足够了。
答案 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
$