我之前写过这个关于 bash 脚本的问题
我需要脚本来从 whois 中提取信息到 excel 文件(csv)
喜欢:
A B C D E
domain ipaddress ownername owneraddress servertype
我写了小脚本,但所有者名和域地址在同一列中
#!/bin/bash
while read domain; do
ipaddress=`dig $domain +short`
domcre=`whois $domain | grep "Created on" | cut -d ":" -f 2 | sed 's/ //' | sed -e :a -e '$!N;s/ \n/,/;ta'`
domexp=$(whois $domain | grep "Expiration Date" | cut -d ":" -f 2 | sed 's/ //' | sed -e :a -e '$!N;s/ \n/,/;ta')
ownname=$(whois $domain | grep -A 1 -i "Administrative Contact:" |cut -d ":" -f 2 | sed 's/ //' | sed -e :a -e '$!N;s/ \n/,/;ta')
echo -e "$domain,$ipaddress,$domcre,$domexp,\t$ownname" >> data.csv
done <d.txt