#!/usr/bin/env perl # # This file is part of moses. Its use is licensed under the GNU Lesser General # Public License version 2.1 or, at your option, any later version. use warnings; use strict; my ($type) = @ARGV; if ($type =~ /^s/i) { print "\n"; print "\n"; } elsif ($type =~ /^t/i) { print "\n"; print "\n"; } elsif ($type =~ /^r/i) { print "\n"; print "\n"; } else { die("ERROR: specify source / target / ref"); } my $i = 0; while() { chomp; print "$_\n"; } print "\n"; if ($type =~ /^s/i) { print "\n"; } elsif ($type =~ /^t/i) { print "\n"; } elsif ($type =~ /^r/i) { print "\n"; }