Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
69e7360c
Unverified
Commit
69e7360c
authored
Mar 29, 2023
by
neil
Committed by
GitHub
Mar 29, 2023
Browse files
Merge pull request #4568 from imlonghao/patch-1
fix(cloudns): fix grep when TXT record start with hyphen symbol
parents
97f87c42
7ef2533b
Changes
1
Hide whitespace changes
Inline
Side-by-side
dnsapi/dns_cloudns.sh
View file @
69e7360c
...
...
@@ -78,7 +78,7 @@ dns_cloudns_rm() {
return
1
fi
for
i
in
$(
echo
"
$response
"
|
tr
'{'
"
\n
"
|
grep
"
$record
"
)
;
do
for
i
in
$(
echo
"
$response
"
|
tr
'{'
"
\n
"
|
grep
--
"
$record
"
)
;
do
record_id
=
$(
echo
"
$i
"
|
tr
','
"
\n
"
|
grep
-E
'^"id"'
|
sed
-re
's/^\"id\"\:\"([0-9]+)\"$/\1/g'
)
if
[
-n
"
$record_id
"
]
;
then
...
...
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