Commit b7d67ddc authored by Vitaly Lipatov's avatar Vitaly Lipatov

eget: url_get_response: run subprocess in quiet mode

parent 092cd89b
...@@ -854,10 +854,10 @@ url_get_response() ...@@ -854,10 +854,10 @@ url_get_response()
{ {
local URL="$1" local URL="$1"
local answer 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 # HTTP/1.1 405 Method Not Allowed
if echo "$answer" | grep -q "^ *HTTP/[12.]* 405" ; then 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 return
fi fi
echo "$answer" echo "$answer"
...@@ -900,10 +900,10 @@ url_get_response() ...@@ -900,10 +900,10 @@ url_get_response()
{ {
local URL="$1" local URL="$1"
local answer local answer
answer="$(__curl -LI "$URL" 2>&1)" answer="$(quiet=1 __curl -LI "$URL" 2>&1)"
# HTTP/1.1 405 Method Not Allowed # HTTP/1.1 405 Method Not Allowed
if echo "$answer" | grep -q "^ *HTTP/[12.]* 405" ; then 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 return
fi fi
echo "$answer" 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