http://qs1969.pair.com?node_id=53953


in reply to use warnings vs. perl -w

To switch on warnings when you can't use -w, use $^W=1 instead. Or if you use english then $^W is called $WARNING. You can limit the scope of your change by using local inside a block (e.g. if you wanted to switch off warnings in a limited scope).

andy.