From f03901c77d56a06f1bd007766e9b9b16b731a6ce Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Fri, 27 Nov 2015 01:53:57 +0300 Subject: [PATCH] wget: minor refactoring (reorder options) --- bin/wget-m | 6 +++--- bin/wget-wrapper | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/wget-m b/bin/wget-m index e20ff85..441ea40 100755 --- a/bin/wget-m +++ b/bin/wget-m @@ -2,9 +2,9 @@ . "$HOME"/lib/config/wget -exec wget -4 --mirror --continue -e robots=off --limit-rate="$wget_speed" \ - --page-requisites --proxy=off -nH --no-parent --trust-server-names \ - --wait=15 --random-wait "$@" +exec wget -4 --continue -e robots=off --limit-rate="$wget_speed" \ + --mirror -nH --no-parent --page-requisites --progress=bar:noscroll \ + --proxy=off --trust-server-names --random-wait --wait=15 "$@" # Other useful flags are: -b (--background) --cut-dirs -E (--html-extension) # -k (--convert-links) diff --git a/bin/wget-wrapper b/bin/wget-wrapper index 1df075a..e7062cd 100755 --- a/bin/wget-wrapper +++ b/bin/wget-wrapper @@ -3,7 +3,7 @@ . "$HOME"/lib/config/wget exec wget -4 --continue --limit-rate="$wget_speed" -N --no-directories \ - --proxy=off --trust-server-names "$@" + --progress=bar:noscroll --proxy=off --trust-server-names "$@" # Other useful flags are: -b (--background) -E (--html-extension) # --page-requisites -- 2.39.2