Help for this page

Select Code to Download


  1. or download this
    sub slurp {
       my $file = shift;
       local $/;
       open my $fh, '<', $file or die "Can't open $file: $!";
       return <$fh>;
    }