- or download this
#!/usr/bin/perl -w
use strict;
...
local $/ = undef;
my $input = <>;
print length($input);
- or download this
D:\tmp>perl -0777 -pe "42" try.html | perl try.pl
5409
- or download this
perl -pe 'BEGIN{$|=1}' /usr/dict/words | perl -lne 'print ((stat STDIN
+)[7])'|sort|uniq