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