in reply to Re: Disable Perl warning
in thread Disable Perl warning

Note that use warnings is limited to the lexical block it it present in:
if (1) { use warnings; } # no warnings say "Yup" if "zero" == 0;