summaryrefslogtreecommitdiffstats
path: root/buildAdBlocklistv6.sh
diff options
context:
space:
mode:
Diffstat (limited to 'buildAdBlocklistv6.sh')
-rwxr-xr-xbuildAdBlocklistv6.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/buildAdBlocklistv6.sh b/buildAdBlocklistv6.sh
deleted file mode 100755
index aa62fb9..0000000
--- a/buildAdBlocklistv6.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-awk -F'[\t ]+' '{
- if (!match($0, /^[\t ]*(#|$)/)) {
- if (NF>=2 && length($2)) {
- host=$2
- } else {
- host=$1
- }
- if (!match(host, /^(localhost|local|localhost.localdomain|ip6-localnet|ip6-localhost$)$/)) {
- print "::1 " host
- }
- }
-}' adlists/* | sort > blockV6.list