Simple Bash DNS-Query Script for several hosts

in #bash6 years ago

This is one simple script to parse a list of fqdn-hostnames if you need only the ip-addresses.
You can customize it in any way you want just like extending for ping-requests or generating new lists from it.

while read line; do host $line |  awk '{print $NF}' | grep -oE "\b([0-9]{1,3}\.){3}[0-9]{1,3}\b"; done < list.txt

Hope you like this short example.

Coin Marketplace

STEEM 0.06
TRX 0.28
JST 0.048
BTC 72560.71
ETH 2128.96
USDT 1.00
SBD 0.50