fix(cloudns): fix grep when record start with hyphen symbol

This commit is contained in:
imlonghao 2023-03-28 22:34:04 +08:00
parent 97f87c4229
commit 7ef2533b98
No known key found for this signature in database
GPG Key ID: BB80A757B3E37324
1 changed files with 1 additions and 1 deletions

View File

@ -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