如何使用系统检索传递给perl脚本的参数?

时间:2013-06-28 11:07:32

标签: perl parameters

我正在使用:

system($script, @my_args);

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

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

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

1 个答案:

答案 0 :(得分:3)

@ARGV

收到论据