使WGET显示不太详细的输出


32

是否可以让WGET仅显示下载进度,例如下载栏,而不是所有连接信息,因为它在客户端看起来确实有些丑陋,这可能吗?

Answers:



20

在StackOverflow上有一个答案可以做到这一点:

wget -q --show-progress http://example.com

--show-progress 将覆盖“安静”标志。


1
应该是公认的答案,因为它与wget特别相关。
cerd

5

试试吧curl...

$ curl“ http://curl.haxx.se/download/curl-7.21.6.tar.lzma” -o nul
  %总计%接收的%Xferd平均速度时间时间时间当前
                                 Dload上传总花费左速度
 11 1838k 11 213k 0 0 7996 0 0:03:55 0:00:27 0:03:28 18096

...或curl -#

$ curl“ http://curl.haxx.se/download/curl-7.21.6.tar.lzma” -o nul-#
######### 13,3%
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.