fix: remove sed before grep, but lead to less robusty

This commit is contained in:
Easton Man 2020-11-23 23:46:06 +08:00
parent e35ef75949
commit 83a4db3b31
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ _add_record() {
response=$(_get "${dns_api}/v2/zones/${zoneid}/recordsets?name=${_domain}")
_debug "${response}"
_exist_record=$(echo "${response}" | sed -e ':a' -e 'N;$!ba;' -e 's/\n/ /g' | _egrep_o '"records":[^]]*' | sed 's/\"records\"\:\[//g')
_exist_record=$(echo "${response}" | _egrep_o '"records":[^]]*' | sed 's/\"records\"\:\[//g')
_debug "${_exist_record}"
# Check if record exist