Bugfix shell format error

This commit is contained in:
Philipp Bandow 2020-05-07 15:37:59 +02:00 committed by GitHub
parent 81036894c0
commit 9bbcfead67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ dns_njalla_rm() {
if [ "$count" = "0" ]; then
_info "Don't need to remove."
else
echo "$records" | while read -r record ; do
echo "$records" | while read -r record; do
record_name=$(echo "$record" | _egrep_o "\"name\":\s?\"[^\"]*\"" | cut -d : -f 2 | tr -d " " | tr -d \")
record_content=$(echo "$record" | _egrep_o "\"content\":\s?\"[^\"]*\"" | cut -d : -f 2 | tr -d " " | tr -d \")
record_id=$(echo "$record" | _egrep_o "\"id\":\s?[0-9]+" | cut -d : -f 2 | tr -d " " | tr -d \")