Author: eristic(_at_)gryzmak(_dot_)lodz(_dot_)pdi(_dot_)net
(Marek Jedlinski)
Original-Date: Thu, 29 Jan 1998 23:34:06 GMT
Message-ID:
<34d411de(_dot_)27098586(_at_)gryzmak(_dot_)lodz(_dot_)pdi(_dot_)net>
(1) Could rblcheck optionally grok human-readable domain names and
look up the IP number itself?
It could, but it might make things slower.
Of course you could write a little script wrapper:
#!/bin/sh
for i in $*
do
rblcheck `nslookup $i | \
grep "^Address:" | tail -1 | awk '{print $NF}'`
done
exit 0
TjL