mosesdecoder/scripts/ems/fix-info.perl
Jeroen Vermeulen a25193cc5d Fix a lot of lint, mostly trailing whitespace.
This is lint reported by the new lint-checking functionality in beautify.py.
(We can change to a different lint checker if we have a better one, but it
would probably still flag these same problems.)

Lint checking can help a lot, but only if we get the lint under control.
2015-05-17 20:04:04 +07:00

35 lines
685 B
Perl
Executable File

#!/usr/bin/env perl
use warnings;
use strict;
my ($file,$step) = @ARGV;
$step = "*" unless defined($step);
die("fix-info.perl file [step]") unless defined($file);
die("file not found") unless -e $file;
die("full path!") unless $file =~ /^\//;
my @filestat = stat($file);
my $newtime = $filestat[9];
open(LS,"ls steps/$step/*INFO|") || die;
while(my $info = <LS>) {
chop($info);
my @INFO = `cat $info`;
my $changed = 0;
foreach (@INFO) {
if (/$file .*\[/) {
$changed++;
s/($file) (.*\[)\d+/$1 $2$newtime/g;
}
}
if ($changed) {
print "updating $info\n";
open(INFO,">$info");
foreach (@INFO) { print INFO $_; }
close(INFO);
}
}
close(LS);