Commit 70d058a4 authored by Vitaly Lipatov's avatar Vitaly Lipatov

eget: url_get_response: run subprocess in quiet mode

parent 1cdf8f1c
......@@ -854,10 +854,10 @@ url_get_response()
{
local URL="$1"
local answer
answer="$(__wget --spider -S "$URL" 2>&1)"
answer="$(quiet=1 __wget --spider -S "$URL" 2>&1)"
# HTTP/1.1 405 Method Not Allowed
if echo "$answer" | grep -q "^ *HTTP/[12.]* 405" ; then
__wget --start-pos=5000G -S "$URL" 2>&1
(quiet=1 __wget --start-pos=5000G -S "$URL" 2>&1)
return
fi
echo "$answer"
......@@ -900,10 +900,10 @@ url_get_response()
{
local URL="$1"
local answer
answer="$(__curl -LI "$URL" 2>&1)"
answer="$(quiet=1 __curl -LI "$URL" 2>&1)"
# HTTP/1.1 405 Method Not Allowed
if echo "$answer" | grep -q "^ *HTTP/[12.]* 405" ; then
__curl -L -i -r0-0 "$URL" 2>&1
(quiet=1 __curl -L -i -r0-0 "$URL" 2>&1)
return
fi
echo "$answer"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment