in reply to Fatal warnings?
If you are currently enabling warnings using -w on your #!/usr/bin/perl -w line then you might want to switch to use warnings;. This gives you a lot more control, including the ability to ignore types of warnings and make others fatal. See perllexwarn.
|
|---|