Help for this page

Select Code to Download


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