blacklist_check/multi_check.sh
2022-01-15 12:22:04 +13:00

7 lines
No EOL
162 B
Bash
Executable file

#!/bin/bash
for ADDRESS in $(cat email_server.txt);
do
IP=$(nslookup $ADDRESS | grep Address | cut -d: -f2 | tail -n1);
./blacklist_check.sh $IP;
done