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


in reply to Re: Uncommon* but Useful Perl Command Line Options
in thread Uncommon* but Useful Perl Command Line Options for One-liners

-a only works in combination with -n or -t
I assume this is a typo and Abigail meant -n or -p.

Actually, even without -n or -p, the -a switch does have the very minor effect of creating @F, so that referring to it won't get you a Name "main::F" used only once: possible typo warning. (And *F{ARRAY} will give a reference to @F even if no @F is mentioned anywhere, instead of the usual undef.)   These could be construed as a bug.

Replies are listed 'Best First'.
Re: Re: Re: Uncommon* but Useful Perl Command Line Options
by thor (Priest) on Jan 29, 2004 at 01:17 UTC
    These could be construed as a bug. (sic)
    ..or as devious tools to use for strict-safe obfuscation. Mu-ha-ha-ha-ha. ;)

    thor