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
7ef2533b
Unverified
Commit
7ef2533b
authored
Mar 28, 2023
by
imlonghao
Browse files
fix(cloudns): fix grep when record start with hyphen symbol
parent
97f87c42
Changes
1
Hide whitespace changes
Inline
Side-by-side
dnsapi/dns_cloudns.sh
View file @
7ef2533b
...
@@ -78,7 +78,7 @@ dns_cloudns_rm() {
...
@@ -78,7 +78,7 @@ dns_cloudns_rm() {
return
1
return
1
fi
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'
)
record_id
=
$(
echo
"
$i
"
|
tr
','
"
\n
"
|
grep
-E
'^"id"'
|
sed
-re
's/^\"id\"\:\"([0-9]+)\"$/\1/g'
)
if
[
-n
"
$record_id
"
]
;
then
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