blacklist_check/multi_check.sh

9 lines
181 B
Bash
Raw Permalink Normal View History

2022-01-15 00:22:04 +01:00
#!/bin/bash
for ADDRESS in $(cat email_server.txt);
do
IP=$(nslookup $ADDRESS | grep Address | cut -d: -f2 | tail -n1);
./blacklist_check.sh $IP;
2022-02-05 02:46:30 +01:00
echo -e "\r";
done