@ -138,7 +138,7 @@ AddDomain() {
|
|||||||
bool=true
|
bool=true
|
||||||
domain="${1}"
|
domain="${1}"
|
||||||
|
|
||||||
[[ "${wildcard}" == true ]] && domain="((^)|(\\.))$(echo "${domain}" | sed "s/\./\\\./g")$"
|
[[ "${wildcard}" == true ]] && domain="((^)|(\\.))${domain//\\./\\\.}$"
|
||||||
|
|
||||||
# Is the domain in the list?
|
# Is the domain in the list?
|
||||||
# Search only for exactly matching lines
|
# Search only for exactly matching lines
|
||||||
@ -186,7 +186,7 @@ RemoveDomain() {
|
|||||||
[[ -z "${type}" ]] && type="--wildcard-only"
|
[[ -z "${type}" ]] && type="--wildcard-only"
|
||||||
domain="${1}"
|
domain="${1}"
|
||||||
|
|
||||||
[[ "${wildcard}" == true ]] && domain="((^)|(\\.))$(echo "${domain}" | sed "s/\./\\\./g")$"
|
[[ "${wildcard}" == true ]] && domain="((^)|(\\.))${domain//\\./\\\.}$"
|
||||||
|
|
||||||
bool=true
|
bool=true
|
||||||
# Is it in the list?
|
# Is it in the list?
|
||||||
|
Reference in New Issue
Block a user