SYNOPSIS

     In your command-line script:
    
     #!perl
     use Perinci::CmdLine::Any;
     Perinci::CmdLine::Any->new(url => '/Package/func')->run;

DESCRIPTION

    This module lets you use Perinci::CmdLine if it's available, or
    Perinci::CmdLine::Lite as the fallback. The goal is to reduce
    dependencies. Perinci::CmdLine::Any only depends on the lightweight
    Perinci::CmdLine::Lite, which has +- 20 non-core Perl modules as
    dependency, while installing Perinci::CmdLine will pull +-200 non-core
    modules.

    Note that Perinci::CmdLine::Lite provides only a subset of the
    functionalities/features of Perinci::CmdLine.

    If you want to force using a specific class, you can set the
    PERINCI_CMDLINE_ANY environment variable, e.g. the command below will
    choose Perinci::CmdLine::Lite even though Perinci::CmdLine is
    available:

     % PERINCI_CMDLINE_ANY=Perinci::CmdLine::Lite yourapp.pl

    If you want to prefer to Perinci::CmdLine::Lite (but user will still be
    able to override using PERINCI_CMDLINE_ANY):

     use Perinci::CmdLine::Any -prefer_lite => 1;

ENVIRONMENT

 PERINCI_CMDLINE_ANY => str

    Either specify module name, or lite or classic.

SEE ALSO

    Perinci::CmdLine

    Perinci::CmdLine::Lite

