%hash = ( 'one' => [ 'abc', 'def', 'ghi' ], 'two' => 3 ); #### %hash = ( 'one' => [ 'abc', 'def', 'ghi' ], 'two' => [ 'abc', 'def', 'ghi' ] ); #### $hash{'two'} = [ @{$hash{'one'}} ];