Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
eget
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
eget
Commits
b7d67ddc
Commit
b7d67ddc
authored
Apr 12, 2023
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eget: url_get_response: run subprocess in quiet mode
parent
092cd89b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
eget
eget
+4
-4
No files found.
eget
View file @
b7d67ddc
...
@@ -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
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment