Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
38e08bb9
Unverified
Commit
38e08bb9
authored
Oct 10, 2019
by
neil
Committed by
GitHub
Oct 10, 2019
Browse files
Merge pull request #2434 from dkerr64/FreeDNS
Work around bug in _egrep_o() function
parents
95dd7b53
0b2b8b96
Changes
1
Show whitespace changes
Inline
Side-by-side
dnsapi/dns_freedns.sh
View file @
38e08bb9
...
@@ -305,7 +305,7 @@ _freedns_domain_id() {
...
@@ -305,7 +305,7 @@ _freedns_domain_id() {
domain_id
=
"
$(
echo
"
$htmlpage
"
|
tr
-d
"[:space:]"
|
sed
's/<tr>/@<tr>/g'
|
tr
'@'
'\n'
\
domain_id
=
"
$(
echo
"
$htmlpage
"
|
tr
-d
"[:space:]"
|
sed
's/<tr>/@<tr>/g'
|
tr
'@'
'\n'
\
|
grep
"<td>
$search_domain
</td>
\|
<td>
$search_domain
(.*)</td>"
\
|
grep
"<td>
$search_domain
</td>
\|
<td>
$search_domain
(.*)</td>"
\
|
_egrep_o
"
edit
\.
php
\
?
edit_domain_id=[0-9a-zA-Z]
+"
\
|
sed
-n
's/.*\(
edit\.php?edit_domain_id=[0-9a-zA-Z]
*\).*/\1/p'
\
|
cut
-d
=
-f
2
)
"
|
cut
-d
=
-f
2
)
"
# The above beauty extracts domain ID from the html page...
# The above beauty extracts domain ID from the html page...
# strip out all blank space and new lines. Then insert newlines
# strip out all blank space and new lines. Then insert newlines
...
@@ -352,7 +352,7 @@ _freedns_data_id() {
...
@@ -352,7 +352,7 @@ _freedns_data_id() {
data_id
=
"
$(
echo
"
$htmlpage
"
|
tr
-d
"[:space:]"
|
sed
's/<tr>/@<tr>/g'
|
tr
'@'
'\n'
\
data_id
=
"
$(
echo
"
$htmlpage
"
|
tr
-d
"[:space:]"
|
sed
's/<tr>/@<tr>/g'
|
tr
'@'
'\n'
\
|
grep
"<td[a-zA-Z=#]*>
$record_type
</td>"
\
|
grep
"<td[a-zA-Z=#]*>
$record_type
</td>"
\
|
grep
"<ahref.*>
$search_domain
</a>"
\
|
grep
"<ahref.*>
$search_domain
</a>"
\
|
_egrep_o
"
edit
\.
php
\
?
data_id=[0-9a-zA-Z]
+"
\
|
sed
-n
's/.*\(
edit\.php?data_id=[0-9a-zA-Z]
*\).*/\1/p'
\
|
cut
-d
=
-f
2
)
"
|
cut
-d
=
-f
2
)
"
# The above beauty extracts data ID from the html page...
# The above beauty extracts data ID from the html page...
# strip out all blank space and new lines. Then insert newlines
# strip out all blank space and new lines. Then insert newlines
...
...
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