mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 22:14:57 +03:00
10 lines
103 B
Perl
10 lines
103 B
Perl
|
#!/usr/bin/perl
|
||
|
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
|
||
|
while (<>) {
|
||
|
last if $_ =~ m/^diff --git/;
|
||
|
print $_;
|
||
|
}
|