Help for this page

Select Code to Download


  1. or download this
    sub slurp {
        local $/ = undef;
    ...
        return $slurp;
    }
    my $content = slurp($file)
    
  2. or download this
    open my $fh, $file or die "Can't open $file: $!";
    my $content = join "", <$fh>;
    close $fh;  # or just let it close by the next }