- or download this
my $str = '';
my $tmp;
while (read($handle, $tmp, 32*1024)) {
$str .= $tmp;
- or download this
my $str = '';
while (read($handle, $str, 32*1024, length($str))) {
- or download this
pos($str) = 0;
- or download this
$str = substr($str, pos($str));