api: wget(): suppress aria2c output if -q flag passed

pull/734/merge
Botspot 4 years ago
parent 963927f6e4
commit 19b6c0d77e

8
api

@ -548,7 +548,13 @@ wget() { #this function intercepts all wget commands being used in app scripts.
if [ -z "$file" ];then
file="$(pwd)/$(basename "$url")"
fi
aria2c -c -x 16 -s 16 -m 10 --retry-wait 30 "$url" --dir '/' -o "${file:1}" --allow-overwrite --summary-interval=1
#suppress output if -q flag passed
if echo "$@" | grep -q '\-q' ;then
aria2c -c -x 16 -s 16 -m 10 --retry-wait 30 "$url" --dir '/' -o "${file:1}" --allow-overwrite --summary-interval=1 >/dev/null
else
aria2c -c -x 16 -s 16 -m 10 --retry-wait 30 "$url" --dir '/' -o "${file:1}" --allow-overwrite --summary-interval=1
fi
fi
}

Loading…
Cancel
Save