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

shorten_info.pl « cruise-control - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: beaf87e068fc0d4369537929018bacd144e049cf (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl

use strict;
use warnings;

while (<>) {
  last if $_ =~ m/^diff --git/;
  print $_;
}