http://www.perlmonks.org?node_id=948858


in reply to Re: DNS Lookup
in thread DNS Lookup

you are probably bypassing it anyway by invoking your script with the perl executable on the command line.
Perl actually honors command line switches on the she bang line, even when invoked directly:
$ cat xxx #!/usr/bin/perl -w print undef; $ perl xxx Use of uninitialized value in print at xxx line 3.

Replies are listed 'Best First'.
Re^3: DNS Lookup
by Anonymous Monk on Jan 20, 2012 at 03:44 UTC

    Yes, for the most part :)

    $ perl #!/usr/bin/perl -Mstrict -- Too late for "-Mstrict" option at - line 1.