remove fgrep, escape regex chars instead

This commit is contained in:
Stefan Seidel 2016-12-03 19:24:42 +00:00
parent 88ed5e506a
commit 0d4035e996
1 changed files with 6 additions and 2 deletions

View File

@ -67,7 +67,7 @@ _dns_do_list_rrs() {
_rr_list="$(echo "${response}" \
| tr -d "\n\r\t" \
| sed -e 's/<item xsi:type="ns2:Map">/\n/g' \
| fgrep ">${fulldomain}</value>" \
| grep ">$(_regexcape "$fulldomain")</value>" \
| sed -e 's/<\/item>/\n/g' \
| grep '>id</key><value' \
| _egrep_o '>[0-9]{1,16}<' \
@ -127,7 +127,7 @@ _get_root() {
return 1
fi
if fgrep -q "$h" "${_all_domains}"; then
if grep -q "$(_regexcape "$h")" "${_all_domains}"; then
_domain="$h"
return 0
fi
@ -138,3 +138,7 @@ _get_root() {
return 1
}
_regexcape() {
echo "$1" | sed -e 's/\([]\.$*^[]\)/\\\1/g'
}