generate_blocklist: make URLs configurable

This commit is contained in:
Peter Cai 2021-04-05 20:36:14 +08:00
parent bb7c360eff
commit 9dca8f1a89
2 changed files with 8 additions and 5 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@
/worker
/config.json
/blocklist.txt
/blocklist_config.sh

View File

@ -5,10 +5,12 @@ function import_hosts() {
curl "$url" | sed '/^#/d' | sed 's/0.0.0.0 //g' | sed 's/127.0.0.1 //g' | grep '\S'
}
URLS=(
"https://someonewhocares.org/hosts/zero/hosts"
"https://adaway.org/hosts.txt"
)
# In blocklist_config, put a list of URLs to shared ad-blocking hosts files
# e.g.
# URL=(
# "https://some-domain/hosts"
#)
. ./blocklist_config.sh
echo "" > blocklist.txt
for url in ${URLS[@]}; do