NAME
CLI::Popt - Parse CLI parameters via popt
SYNOPSIS
my $popt = CLI::Popt->new(
[
# A simple boolean:
{ long_name => 'help' },
# Customize the boolean’s truthy value:
{
long_name => 'gotta-be-me',
type => 'val',
val => 42,
},
],
name => $0, # default; shown just for demonstration
);
my ($opts_hr, @leftovers) = $popt->parse(@ARGV);
if ($opts_hr->{'help'}) {
print $popt->get_help();
exit;
}
… and so on.
DESCRIPTION
Getopt::Long is nice, but its inability to auto-generate help & usage text requires you to duplicate data between your code and your script’s documentation.
popt remedies that problem. This module makes that solution available to Perl.
CHARACTER ENCODING
All strings into & out of this library are byte strings. Please decode/encode according to your application’s needs.
METHODS
$obj = CLASS->new( \@OPTIONS, %EXTRA )
Instantiates CLASS.
Each @OPTIONS member is a reference to a hash that describes an option
that the returned $obj will parse()
out:
-
long_name
(required) -
type
- optional; one of:none
(default),string
,argv
(i.e., an array of strings),short
,int
,long
,longlong
,float
, ordouble
-
short_name
- optional -
flags
- optional arrayref ofonedash
,doc_hidden
,optional
,show_default
,random
, and/ortoggle
.Numeric options may also include
or
,and
, orxor
, and optionallynot
.NB: not all flags make sense together; e.g.,
or
conflicts withxor
.See popt(3) for more information.
-
descrip
, andarg_descrip
- optional, as described in popt(3).
%EXTRA is:
-
name
- defaults to Perl’s$0
. Give empty string to leave this unset.
($opts_hr, @leftovers) = OBJ->parse(@ARGV)
Parses a list of strings understood to be parameters to script
invocation. Returns a hash reference of the parsed options (keyed
on each option’s long_name
) as well as a list of “leftover” @ARGV members
that didn’t go into one of the parsed options.
If @ARGV doesn’t match OBJ’s stored options specification (e.g., popt(3) fails the parse), an appropriate exception of type CLI::Popt::X::Base is thrown.
$str = OBJ->get_help()
Returns the help text.
$str = OBJ->get_usage()
Returns the usage text.
LICENSE & COPYRIGHT
Copyright 2022 by Gasper Software Consulting. All rights reserved.
This library is licensed under the same terms as Perl itself. See perlartistic.