does the "or die $!"-part in the "close $fh or die $!;"-line any good?
#!/usr/bin/env perl
use warnings;
use strict;
my $file = 'my_file';
open my $fh, '<', $file or die $!;
print <$fh>;
close $fh or die $!;
|
|
|
In your example, as it is at the end of your script and on a file open for reading, it is unncessary. I'm trying to think if it's necessary when reading a pipe. Normally you close after an EOF condition, so I think it's not necessary either. However, if you are writing, there are various errors that could be detected at close time. The most simple example is a full disk. This may not be reported until closing the filehandle because of buffering. You can also |
||||
|
|
|
If the file is open for reading that is not needed. However, when file is open for writing it is possible that IO buffer could not be flushed at |
|||
|
|
|
Yes, the "or die" should do it. However in practice checking for errors when closing a file is unnecessary, as the only error that close can ever reasonably give you was "bad file descriptor" i.e. the file wasn't open in the first place - which means it's effectively succeeded anyway. You could also consider using Fatal. (perldoc Fatal) |
|||||||||
|