in reply to Re: write exact lines of file
in thread write exact lines of file
You should always, yes, always, check the results of system calls for errors.use warnings; use strict;
open(FILE, filename) or die "Cannot open filename:$!\n";
There is absolutely no need in any of the examples to read the file into an array. It is faster and far less memory wasteful to loop through the file with while:
while (<FILE>) { # do stuff }
In your 3rd example, you are not opening the file for writing, so writing will fail. This would have been caught if you had allowed warnings.
There are more problems, but since many posts above have dealt with this problem much better, I will cease now.
--
Regards,
Helgi Briem
hbriem AT simnet DOT is
|
---|