Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/pi-hole/pi-hole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Schaper <dan.schaper@pi-hole.net>2020-03-02 19:07:10 +0300
committerDan Schaper <dan.schaper@pi-hole.net>2020-03-02 19:07:10 +0300
commit360d0e4e6bfb5c71e078be41d21132422fb20323 (patch)
tree9f4cc50eecaec4f696eea67118e1f87537504218 /advanced
parent4f390ce801c739ea87cfcae131855ecbd9161818 (diff)
Loop through array of lists.
Signed-off-by: Dan Schaper <dan.schaper@pi-hole.net>
Diffstat (limited to 'advanced')
-rwxr-xr-xadvanced/Scripts/query.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/advanced/Scripts/query.sh b/advanced/Scripts/query.sh
index 73650400..4dc9429d 100755
--- a/advanced/Scripts/query.sh
+++ b/advanced/Scripts/query.sh
@@ -35,11 +35,15 @@ scanList(){
# /dev/null forces filename to be printed when only one list has been generated
case "${type}" in
"exact" ) grep -i -E -l "(^|(?<!#)\\s)${esc_domain}($|\\s|#)" ${lists} /dev/null 2>/dev/null;;
- # Create array of regexps
# Iterate through each regexp and check whether it matches the domainQuery
# If it does, print the matching regexp and continue looping
# Input 1 - regexps | Input 2 - domainQuery
- "regex" ) if [[ "${domain}" =~ ${lists} ]]; then printf "%b\n" "${lists}"; fi;;
+ "regex" )
+ for list in `echo "${lists}"`; do
+ if [[ "${domain}" =~ ${list} ]]; then
+ printf "%b\n" "${list}";
+ fi
+ done;;
* ) grep -i "${esc_domain}" ${lists} /dev/null 2>/dev/null;;
esac
}