我是 perl 新手。目前我正在运行一个 perl 脚本,它将调用另一个 perl 脚本。第二个 perl 脚本有 2 个输入参数
sample2.pl -itest.txt -ffile1.txt
我有不同的输入参数-f
like file1,file2,file3...file10
。
现在我想为当前运行的所有输入参数(file1、file2、file3)并行运行第二个 perl 脚本 -
#!/usr/bin/perl
use warnings;
use strict;
my $fi="output3.txt";--(output3.txt will contain the files file1,file2..file10)
open (OF, $fi);
foreach(<OF>)
{
system ("perl ucm3.pl -iinput.txt -f$_ ");
print $_;
}
但它不是并行运行的,而是一个接一个地运行。请帮助并行运行这些脚本。提前致谢。