Consider the following nonsense script as an example:
use strict;
use warnings;
my $uninitialisedValue;
while(<>){
print ${$uninitialisedValue}{$_},"\n";
}
Which is run from the command line:
$ perl warningPrinter.pl < longfile.txt
Regardless of what STDIN contains, the STDOUT will be full of:
Use of uninitialized value in print at warningPrinter.pl line 16, <> line 1.
Use of uninitialized value in print at warningPrinter.pl line 16, <> line 2.
Use of uninitialized value in print at warningPrinter.pl line 16, <> line 3.
Use of uninitialized value in print at warningPrinter.pl line 16, <> line 4.
...
I work with very long files, so receiving this as output when testing my script is at the very least mildly irritating. It can take a while for the process to respond to a CTRL-c termination signal and my terminal is suddenly filled with the same error message.
Is there a way of either getting perl to print just the first instance of an identical and reoccurring warning message, or to just make warning messages fatal to the execution of the script? Seeing as I have never produced a script that works despite having warnings in them, I would accept either. But its probably more convenient if I can get perl to print identical warnings just once.
use warnings FATAL => 'all'works great for killing the process after a warning in my case. – Mattrition Mar 19 '12 at 12:01forwhen reading a file, especially when that file is large, because a for loop pre-loads its list into memory. Usewhileinstead. Also, redirecting a file to stdin is redundant, just use the file as argument. In your specific problem, reopening STDERR to a file can be a solution. – TLP Mar 19 '12 at 12:18while:p. However, I find reading from STDIN both quicker to code for and the script will automatically be compatible with piping from another process. If i just took an argument from the command line I would have to check to see if the user actually wants to read from STDIN instead. – Mattrition Mar 19 '12 at 12:32script.pl < fileandscript.pl fileis for practical purposes identical when using the diamond operator<>. – TLP Mar 19 '12 at 12:55