my $data=''; while (<$file>) { $data .= $_; } #### binmode($file); my $data; { local $/; $data = <$file>; }