in reply to Re: Passing arguments from a Perl script to another
in thread Passing arguments from a Perl script to another
Probably a safer way would be this:
which bypasses a shell ($^X is the path to the current Perl-interpreter).system($^X, $otherscript, @ARGV, "test");
|
|---|