in reply to Getting the Value of a single hash key
Ahh, you don't need to use push, you can change the line:
push( @{$hash{$key}}, $src); [download]
$hash{$key}=$src; [download]
And all should be well.
Good Luck