binmode $fh; read($fh, my $buf, 20000); #### binmode $fh; local $/ = \20000; my $buf = <$fh>; #### binmode $fh; my $file = ''; 1 while read($fh, $file, 8*1024, length($file)); #### binmode $fh; local $/; my $file = <$fh>;