How could make bash script to filter list of DNS resolver because it out with false positive results
suggested code
!/bin/sh
for IP in `cat ./resolvers.txt`; do
printf "%-4s", $IP
dig @$IP test.com
done
test.com is my domain which I already know what the output would be, then any different result would be from bad resolver.