in reply to Re: Ripe Whois lookup
in thread Ripe Whois lookup
I am used
foreach $inet ($whois->query($as)) {
print $inet->address, "\n";
}
instead of simple
$query = $whois->query($as);
$output = $query->content;
to output address lines. This way you probably can get full output.