in reply to Remove Extra bytes at end of file
my $data=''; while (<$file>) { $data .= $_; } [download]
binmode($file); my $data; { local $/; $data = <$file>; } [download]