i'm working on a dispatching script, it takes a string with a command, does some cooking to it and then parses it. But i can't grab a hold into the referencing:
Use::strict;
Use:warnings;
my($contexto,$cmd,$target,$ultpos,@params);
my $do= "echo5 sample string that says stuff ";
$target="";
$cmd="";
$_="";
# i do some cumbersome string parsing to get the array with the exploded string and then call parsear(@command)
sub parsear{
my %operations=(
'echo' => \&echo,
'status' => \&status,
'echo5' => \&echo5,
);
my $op= $_[0];
if ($operations{$op}){
$operations{$op}->(@_);
print "it exists\n";
}else{
print "incorrect command.\n";
}
}
sub status{
print "correct status.\n";
}
sub echo{
shift(@_);
print join(' ',@_) . "\n";
}
sub echo5{
shift(@_);
print join(' ',@_) . "\n" x 5;
}
I don't really know what the problem is, if the sub does not exists, it never says "incorrect command", and if i call for example "echo5 hello" it should print out
hello
hello
hello
hello
hello
but it does nothing.
And when i call echo it works as espected. Can someone explain this magic to me? note: i'm on the latest version of strawberry perl