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