http://www.perlmonks.org?node_id=319193


in reply to one hash value (array) into another

c,
It depends on what you mean by "equivalents".

If you mean having an initial copy that can diverge

$hash{two} = [ @{$hash{one}} ];
If you mean you want both keys to be referents to the same anonymous array
$hash{two} = $hash{one};
Cheers - L~R