my %hash = (edit => \&edit_file, save => \&save_file, #... ); my $action = 'edit'; $hash{$action}->(); # jetzt wird die Subroutine aufgerufen