Help for this page

Select Code to Download


  1. or download this
    #! perl -slw
    use strict;
    
    ...
    open DF, '<:raw', $file or die "$file : $!";
    my @test = split /(?<=\n)/, do{ local $/ = \ -s( $file ); <DF> };
    close DF;