Make removing regex domains work correctly

Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
This commit is contained in:
Mcat12 2018-06-29 22:51:37 -04:00
parent 8435eeed4d
commit 4a953b66e0
No known key found for this signature in database
GPG Key ID: ABB8FC9789AF524D
1 changed files with 4 additions and 3 deletions

View File

@ -69,7 +69,7 @@ HandleOther() {
# Check validity of domain (don't check for regex entries)
if [[ "${#domain}" -le 253 ]]; then
if [[ "${listMain}" == "${regexlist}" ]]; then
validDomain=""
validDomain="${domain}"
else
validDomain=$(grep -P "^((-|_)*[a-z\d]((-|_)*[a-z\d])*(-|_)*)(\.(-|_)*([a-z\d]((-|_)*[a-z\d])*))*$" <<< "${domain}") # Valid chars check
validDomain=$(grep -P "^[^\.]{1,63}(\.[^\.]{1,63})*$" <<< "${validDomain}") # Length of each label
@ -185,8 +185,9 @@ RemoveDomain() {
if [[ "${bool}" == true ]]; then
# Remove it from the other one
echo -e " ${INFO} Removing $1 from regex list..."
# /I flag: search case-insensitive
sed -i "/${domain}/Id" "${list}"
local lineNumber
lineNumber=$(grep -Fnx "$1" "${list}" | cut -f1 -d:)
sed -i "${lineNumber}d" "${list}"
reload=true
else
if [[ "${verbose}" == true ]]; then