Help for this page
print $fh $_ while <$fd>;
use strict; use warnings; ... tie my @array, 'Tie::File', $file or die "Cannot tie file '$file': $! +"; unshift @array, 'data'; untie @array;