答案 0 :(得分:27)
您可以尝试-o和-q
-o logfile
--output-file=logfile
Log all messages to logfile. The messages are
normally reported to standard error.
-q
--quiet
Turn off Wget's output.
所以你有:
wget ... -q -o /dev/null ...
答案 1 :(得分:6)
这会将网站内容打印到标准输出,当您说不想记录到文件时,这是什么意思?
wget -O - http://www.domain.com/
答案 2 :(得分:0)
我个人发现@Paul的答案仍在添加到日志文件中,无论-q
在-O
输出文件参数的基础上添加了/dev/null
到-o
。
wget [url] -q -o /dev/null -O &> /dev/null