If you don't have Tie::File and can't install it from CPAN, read the
file a line at a time and keep track of the byte address of the last
line you've seen. When you've exhausted the file, truncate to the
last address you saved:
open (FH, "+<", $file) or die "can't update $file: $!";
while (<FH>) {
$addr = tell(FH) unless eof(FH);
}
truncate(FH, $addr) or die "can't truncate $file: $!";
Remembering the offset is more efficient than reading the whole file
into memory because it holds only one given line at a time. Although
you still have to grope your way through the whole file, you can use
this technique on files larger than available memory.