8 lines
86 B
Perl
Executable file
8 lines
86 B
Perl
Executable file
#!/usr/bin/env perl
|
|
|
|
use utf8;
|
|
use open qw(:std :utf8);
|
|
|
|
while (<>) {
|
|
print lc $_;
|
|
}
|