in reply to Turn off warning for undefined value in comparison?

traveler,
Check out perldoc perldiag. Remember that by using the warnings pragma instead of the -w command line option that you can toggle settings on a per scope basis.
#!/usr/bin/perl use strict; use warnings; no warnings 'uninitialized'; my $foo; print "cool daddy-o\n" if $foo eq 'bar';
Cheers - L~R