Welcome to mirror list, hosted at ThFree Co, Russian Federation.

run-command-on-multiple-refsets.perl « support « ems « scripts - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8e211582499e303568d5826ad8e1dca74f5c16b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env perl 

use strict;

die("ERROR: syntax: run-command-on-multiple-refsets.perl cmd in out") 
    unless scalar @ARGV == 3;
my ($cmd,$in,$out) = @ARGV;

die("ERROR: attempt to run on multiple references, but there is only one")
    if -e $in && (! -e "$in.ref0" || -e $in."0");
die("ERROR: did not find reference '$in.ref0' or '${in}0'")
    unless (-e "$in.ref0" || -e $in."0");

for(my $i=0;-e "$in.ref$i" || -e $in.$i;$i++) {
    my $single_cmd = $cmd;
    if (! -e "$in.ref$i") {
      $single_cmd =~ s/mref-input-file/$in$i/g;
    }
    else {
      $single_cmd =~ s/mref-input-file/$in.ref$i/g;
    }
    $single_cmd =~ s/mref-output-file/$out.ref$i/g;
    system($single_cmd);
}