in reply to Copying hash contents, from nested hash (was: a simple one)
`perldoc perlref` will help you.
%hash = ( 'a' => { 'aa' => [0,1,2] , 'ab' => [3,4,5] }, 'b' => { 'ba' => [6,7,8] , 'bb' => [9,10,11] }, ); my %a_hash = %{ $hash{a} }; [download]