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

lowercase.perl « tokenizer « scripts - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ee307bc240b668cd2e73731c364b9204a87601c (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env perl 

use warnings;
use strict;

binmode(STDIN, ":utf8");
binmode(STDOUT, ":utf8");

while(<STDIN>) {
  print lc($_);
}