in reply to Repeating Code - there has GOT to be a better way!

As others have said, use a hash rather than symbolic references. Here's how:

#! perl -slw use strict; use Data::Dump qw[ pp ]; my %cmds; for my $fname ( <*Cmd.pm> ) { print $fname; my( $name ) = $fname =~ m[(^.+)Cmd.pm]; %{ $cmds{ $name } } = do $fname; } pp \%cmds; __END__ C:\test>832090.pl billCmd.pm fredCmd.pm { bill => { command_1 => { Command_maps => [], _discussion => "\n some text about command_1", build_types => ["FLIGHT"], cmd_id => 250033, constraints => undef, description => "\n shorter text about command_1 +", fixed_pattern => 143, safety_level => "SAFE", target => "command_target", }, command_2 => { Command_maps => [], _discussion => "\n some text about command_2", build_types => ["FLIGHT"], cmd_id => 250014, constraints => undef, description => "\n shorter text about command_2 +", fixed_pattern => 144, safety_level => "SAFE", target => "command_target", }, }, fred => { command_1 => { Command_maps => [], _discussion => "\n some text about command_1", build_types => ["FLIGHT"], cmd_id => 250033, constraints => undef, description => "\n shorter text about command_1 +", fixed_pattern => 143, safety_level => "SAFE", target => "command_target", }, command_2 => { Command_maps => [], _discussion => "\n some text about command_2", build_types => ["FLIGHT"], cmd_id => 250014, constraints => undef, description => "\n shorter text about command_2 +", fixed_pattern => 144, safety_level => "SAFE", target => "command_target", }, }, }

Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
"I'd rather go naked than blow up my ass"