linux 没有日志文件的WGET

vwhgwdsa  于 2023-11-17  发布在  Linux
关注(0)|答案(4)|浏览(132)

每次我使用wget http://www.domain.com的日志文件被自动保存在我的服务器上。有没有办法运行这个命令而不记录?
谢谢你,
乔尔

szqfcxe2

szqfcxe21#

你可以试试-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 ...

2ic8powd

2ic8powd2#

这将打印网站的内容到标准输出,这是你的意思,当你说,你不想登录到一个文件?

wget -O - http://www.domain.com/

字符串

ep6jt1vc

ep6jt1vc3#

我个人发现,@Paul的答案仍然是添加到日志文件中,而不管-q的命令行输出如何
-O添加到/dev/null-o输出文件参数之上。

wget [url] -q -o /dev/null -O &> /dev/null

字符串

qncylg1j

qncylg1j4#

不知道在Windows上是怎么样的,但是在Linux上,-o指定log输出文件,-O是输出/下载文件,我使用-q -O /dev/null来防止输出。Wget手册。

相关问题