私は使っている:
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
ですか?