in reply to Re^2: Uniq and sort in perl
in thread Uniq and sort in perl

What is happening in that one liner:
print "$vm, $filer, \n" if ! $seen{"$vm:$filler"}++
It's quite an elegant piece of code, with a lot going on. So let's break it down: For bonus points, you can probably do:
foreach my $key ( keys %seen ) { print "$key was seen $seen{$key} times\n"; }
Does that make it any clearer?