diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-08-18 09:42:43 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-08-18 09:42:43 (EDT) |
commit | 4992c8bf62155ab3e2e9fa8bf8443e107c955b7b (patch) | |
tree | 33716e39cc7789abb7f17b863ba4fb72edef3792 /lib | |
parent | 45e68876aee3dc64b6e17aae810a7e17ef8257a7 (diff) |
feed_download(): Add -q option to wget command
Diffstat (limited to 'lib')
-rw-r--r-- | lib/feed.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/feed.sh b/lib/feed.sh index 08e7acd..4b1d123 100644 --- a/lib/feed.sh +++ b/lib/feed.sh @@ -36,7 +36,7 @@ feed_download() { local feed_index="${1}" - wget -O - "${feed_index}" + wget -q -O - "${feed_index}" return 0 } |