标签: perl parameters
我正在使用:
system($script, @my_args);
所以,我在script.pl文件中有这个代码:
my $script = "anotherScript.pl"; @my_args = ("anArgument"); system($script, @my_args);
在anotherScript.pl文件中,如何检索@my_args中的参数?
@my_args
答案 0 :(得分:3)
@ARGV