瀏覽代碼

Reduce wget verbosity

Hamilton Turner 10 年之前
父節點
當前提交
6a17a38150
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      toolset/setup/linux/bash_functions.sh

+ 4 - 1
toolset/setup/linux/bash_functions.sh

@@ -8,7 +8,10 @@
 # export http_proxy=http://10.0.1.0:3128
 
 fw_get () {
-  wget --no-check-certificate --trust-server-names "$@"
+  # -no-verbose disables the big progress bars but keeps
+  # other basic info
+  wget --no-verbose --no-check-certificate \
+    --trust-server-names "$@"
 }
 
 fw_untar() {