in reply to Re^2: Does Perl 5 (or 6?) need another built-in variable for the -F switch?
in thread Does Perl 5 (or 6?) need another built-in variable for the -F switch?

On Linux with a mounted /proc file system, you can find the command line parameters from /proc/$$/cmdline.

But this (and the proposed %^C) would be tricky. Command line parameters maybe clustered. Searching for just '-F' won't do, the parameter may be passed as '-wF:', which sets the split pattern to :. However, a parameter '-iF:' won't.

And then there is PERL5OPT.

  • Comment on Re^3: Does Perl 5 (or 6?) need another built-in variable for the -F switch?

Replies are listed 'Best First'.
Re^4: Does Perl 5 (or 6?) need another built-in variable for the -F switch?
by Hofmator (Curate) on Nov 03, 2006 at 10:21 UTC
    Well, at least perl should know which command line parameters where used when it was invoked :) and as the proposed hash %^C was supposed to be populated by perl itself, this should work out fine. This hash should then, IMO, include the command line parameters set via PERL5OPT.

    Mind you, I have no idea how difficult it would be to patch that into perl, I just said I liked the idea.

    -- Hofmator

    Code written by Hofmator and posted on PerlMonks is public domain. It is provided as is with no warranties, express or implied, of any kind. Posted code may not have been tested. Use of posted code is at your own risk.

      In that case, you rather want an array of pairs instead of a hash. There are switches that can be used multiple times (-M, among others), and some switches interact and their order is relevant (-l and -0 for instance).

        If -M (for example) were used multiple times, the %^C hash would look like this:

        %^C = ( M => [ 'strict', 'Data::Dumper', 'Getopt::Long' ], # ..... );

        Dave