in reply to push to a hash of arrays

I'm not sure what the desclines is, but if you have a hash and each entry in the hash is an array ref, then to push onto it you would do this:

push @{$hash{$tag}}, $value;

-derby