Use strict grep instead of regex for duplicates

Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
pull/2236/head
Mcat12 6 years ago
parent 55175087c4
commit cffb4de83b
No known key found for this signature in database
GPG Key ID: ABB8FC9789AF524D

@ -133,7 +133,7 @@ AddDomain() {
bool=true
# Is the domain in the list?
# Search only for exactly matching lines
grep -E "^${domain}$" "${regexlist}" > /dev/null 2>&1 || bool=false
grep -Fx "${domain}" "${regexlist}" > /dev/null 2>&1 || bool=false
if [[ "${bool}" == false ]]; then
if [[ "${verbose}" == true ]]; then
@ -177,7 +177,7 @@ RemoveDomain() {
[[ -z "${type}" ]] && type="--wildcard-only"
bool=true
# Is it in the list?
grep -E "^${domain}$" "${regexlist}" > /dev/null 2>&1 || bool=false
grep -Fx "${domain}" "${regexlist}" > /dev/null 2>&1 || bool=false
if [[ "${bool}" == true ]]; then
# Remove it from the other one
echo -e " ${INFO} Removing $1 from regex list..."

Loading…
Cancel
Save