Help for this page
my $data=''; while (<$file>) { $data .= $_; }
binmode($file); my $data; { local $/; $data = <$file>; }