0

我在用:

system($script, @my_args);

所以,我在 script.pl 文件中有这段代码:

my $script = "anotherScript.pl";
@my_args = ("anArgument");
system($script, @my_args);

在 anotherScript.pl 文件中,如何检索中的参数@my_args

4

1 回答 1

3

参数在@ARGV

于 2013-06-28T11:11:05.603 回答