summaryrefslogtreecommitdiffstats
path: root/buildAdBlocklistv6.sh
blob: aa62fb9ef9880d6032336779ca796a3a559aec04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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