here is two examples of that work for me require "pl/require.pl"; $functiontocall ='RequireAll'; $functiontocall->(); ------------------------------------------------------------------------------
-
my $alias = "home|SplitInput,LoadVariables,DirectUser,";
my ($name, $subs) = split(/\|/, $alias);
my @subs = split(/\,/, $subs);
foreach $sub(@subs){
my $return_val = &{$sub}($pass_in_vars);
}
