TLD毎のwhoisサーバ一覧を取得する

日付 2019.07.25
タイトル TLD毎のwhoisサーバ一覧を取得する
本文
for DOM in `( wget https://data.iana.org/TLD/tlds-alpha-by-domain.txt -O - 2>/dev/null ) | tail -n +2`; do
echo -e "$DOM\t"`wget https://www.iana.org/whois?q=$DOM -O - 2>/dev/null | \
awk '$1 == "whois:" { print $2 }'`
done | tee TLD-whois-table.`date +%y%m%d`.txt