diff options
Diffstat (limited to 'corpus/lowercase.pl')
-rwxr-xr-x | corpus/lowercase.pl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/corpus/lowercase.pl b/corpus/lowercase.pl new file mode 100755 index 00000000..688e493b --- /dev/null +++ b/corpus/lowercase.pl @@ -0,0 +1,9 @@ +#!/usr/bin/perl -w +use strict; +binmode(STDIN,":utf8"); +binmode(STDOUT,":utf8"); +while(<>) { + $_ = lc $_; + print; +} + |