globalvasu
Programmer
How do i call another perl program using system function and pass scalar variable and array as parameters
how do i read the same in the called script.
Ex :
my $x="test";
my @arr=(10,20,30);
system ('test.pl',$x,@arr);
how do i read the same in the called script.
Ex :
my $x="test";
my @arr=(10,20,30);
system ('test.pl',$x,@arr);