私はperlが初めてです。現在、別の perl スクリプトを呼び出す perl スクリプトを実行しています。2 番目の perl スクリプトには 2 つの入力パラメータがあります
sample2.pl -itest.txt -ffile1.txt
-f
likeにはさまざまな入力パラメーターがありますfile1,file2,file3...file10
。
今、私は現在実行中のすべての入力パラメータ(ファイル1、ファイル2、ファイル3)に対して2番目の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 $_;
}
しかし、それは並行して実行されているわけではなく、次々に実行されています。これらのスクリプトを並行して実行するのを手伝ってください。前もって感謝します。