Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
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
etersoft
eepm
Commits
992f021a
Commit
992f021a
authored
Mar 31, 2024
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eget: add support square brackets as wildcards
parent
786383d1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
tools_eget
bin/tools_eget
+10
-3
No files found.
bin/tools_eget
View file @
992f021a
...
...
@@ -1457,8 +1457,8 @@ else
fi
# https://www.freeoffice.com/download.php?filename=freeoffice-2021-1062.x86_64.rpm
if
echo
"
$URL
"
|
grep
-q
"[*]"
;
then
fatal
"Error: there are globbing symbol (*) in
$URL
. It is allowed only for mask part"
if
echo
"
$URL
"
|
grep
-q
"[*
\[\]
]"
;
then
fatal
"Error: there are globbing symbol (*
[]
) in
$URL
. It is allowed only for mask part"
fi
is_url
"
$MASK
"
&&
fatal
"eget supports only one URL as argument"
...
...
@@ -1481,8 +1481,15 @@ if [ -n "$LISTONLY" ] ; then
exit
fi
is_wildcard
()
{
echo
"
$1
"
|
grep
-q
"[*?]"
&&
return
echo
"
$1
"
|
grep
-q
"
\]
"
&&
return
echo
"
$1
"
|
grep
-q
"
\[
"
&&
return
}
# If there is no wildcard symbol like asterisk, just download
if
echo
"
$MASK
"
|
grep
-qv
"[*?]
"
||
echo
"
$MASK
"
|
grep
-q
"[?].*="
;
then
if
!
is_wildcard
"
$MASK
"
||
echo
"
$MASK
"
|
grep
-q
"[?].*="
;
then
sget
"
$1
"
"
$TARGETFILE
"
exit
fi
...
...
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