我在用:
system($script, @my_args);
所以,我在 script.pl 文件中有这段代码:
my $script = "anotherScript.pl";
@my_args = ("anArgument");
system($script, @my_args);
在 anotherScript.pl 文件中,如何检索中的参数@my_args
?
我在用:
system($script, @my_args);
所以,我在 script.pl 文件中有这段代码:
my $script = "anotherScript.pl";
@my_args = ("anArgument");
system($script, @my_args);
在 anotherScript.pl 文件中,如何检索中的参数@my_args
?