config root man

Current Path : /usr/src/tools/tools/mid/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/src/tools/tools/mid/mid-master

#!/usr/local/bin/perl

if ($#ARGV < 1) {
    die "usage master counter command comandargs ... \n";
}

$count = $ARGV[0]; shift @ARGV;
@command = @ARGV;
$file = pop(@command);
undef @ARGV;
$debug = 0;

for($i = 0; $i < $count; $i ++) {
    @c = (@command, "$file.$i");
    warn "Start process: $i @c\n" if $debug;
    open("OUT$i", "| @c") || die "open @c\n";
    select("OUT$i"); $| = 1;
}
select(STDOUT);

$n = 0;
while(<>) {
    $o = 'OUT' . ($n % $count);
    print $o $_;
    warn "$o $_" if $debug;
    $n++
}

for($i = 0; $i < $count; $i ++) {
    warn "Close process $i\n" if $debug;
    close("OUT$i") || warn "close OUT$i: $!\n";
}


Man Man