in reply to Re: Cheking for duplicates
in thread Cheking for duplicates

Many Thanks indeed...It worked but like this
foreach my $hosts (@$hosts_views) { unless ( $seen{$hosts->name}) { printf "%s\n",$hosts->name; } }
Blackadder