ActivePerl Documentation
|
NAMEGetopt::Long - Extended processing of command line options
SUPPORTED PLATFORMS
SYNOPSISuse Getopt::Long; $result = GetOptions (...option-descriptions...);
DESCRIPTIONThe Getopt::Long module implements an extended getopt function called GetOptions(). This function adheres to the POSIX syntax for command line options, with GNU extensions. In general, this means that options have long names instead of single letters, and are introduced with a double dash ``--''. Support for bundling of command line options, as was the case with the more traditional single-letter approach, is provided but not enabled by default.
Command Line Options, an IntroductionCommand line operated programs traditionally take their arguments from the command line, for example filenames or other information that the program needs to know. Besides arguments, these programs often take command line options as well. Options are not necessary for the program to work, hence the name 'option', but are used to modify its default behaviour. For example, a program could do its job quietly, but with a suitable option it could provide verbose information about what it did. Command line options come in several flavours. Historically, they are
preceded by a single dash
-l -a -c
Usually, these single-character options can be bundled:
-lac
Options can have values, the value is placed after the option character. Sometimes with whitespace in between, sometimes not:
-s 24 -s24
Due to the very cryptic nature of these options, another style was
developed that used long names. So instead of a cryptic
--size=24
or
--size 24
The
Getting Started with Getopt::LongGetopt::Long is the Perl5 successor of To use Getopt::Long from a Perl program, you must include the following line in your Perl program:
use Getopt::Long;
This will load the core of the Getopt::Long module and prepare your program for using it. Most of the actual Getopt::Long code is not loaded until you really call one of its functions. In the default configuration, options names may be abbreviated to uniqueness, case does not matter, and a single dash is sufficient, even for long option names. Also, options may be placed between non-option arguments. See Configuring Getopt::Long for more details on how to configure Getopt::Long.
Simple optionsThe most simple options are the ones that take no values. Their mere presence on the command line enables the option. Popular examples are:
--all --verbose --quiet --debug
Handling simple options is straightforward:
my $verbose = ''; # option variable with default value (false)
my $all = ''; # option variable with default value (false)
GetOptions ('verbose' => \$verbose, 'all' => \$all);
The call to The option name as specified to the
A little bit less simple optionsGetopt::Long supports two useful variants of simple options: negatable options and incremental options. A negatable option is specified with a exclamation mark
my $verbose = ''; # option variable with default value (false)
GetOptions ('verbose!' => \$verbose);
Now, using An incremental option is specified with a plus
my $verbose = ''; # option variable with default value (false)
GetOptions ('verbose+' => \$verbose);
Using
Mixing command line option with other argumentsUsually programs take command line options as well as other arguments,
for example, file names. It is good practice to always specify the
options first, and the other arguments last. Getopt::Long will,
however, allow the options and arguments to be mixed and 'filter out'
all the options before passing the rest of the arguments to the
program. To stop Getopt::Long from processing further arguments,
insert a double dash
--size 24 -- --all
In this example,
Options with valuesFor options that take values it must be specified whether the option value is required or not, and what kind of value the option expects. Three kinds of values are supported: integer numbers, floating point numbers, and strings. If the option value is required, Getopt::Long will take the command line argument that follows the option and assign this to the option variable. If, however, the option value is specified as optional, this will only be done if that value does not look like a valid command line option itself.
my $tag = ''; # option variable with default value
GetOptions ('tag=s' => \$tag);
In the option specification, the option name is followed by an equals
sign
Options with multiple valuesOptions sometimes take several values. For example, a program could use multiple directories to search for library files:
--library lib/stdlib --library lib/extlib
To accomplish this behaviour, simply specify an array reference as the destination for the option:
my @libfiles = ();
GetOptions ("library=s" => \@libfiles);
Used with the example above, Often it is useful to allow comma-separated lists of values as well as
multiple occurrences of the options. This is easy using Perl's
my @libfiles = ();
GetOptions ("library=s" => \@libfiles);
@libfiles = split(/,/,join(',',@libfiles));
Of course, it is important to choose the right separator string for each purpose.
Options with hash valuesIf the option destination is a reference to a hash, the option will
take, as value, strings of the form key
my %defines = ();
GetOptions ("define=s" => \%defines);
When used with command line options:
--define os=linux --define vendor=redhat
the hash
User-defined subroutines to handle optionsUltimate control over what should be done when (actually: each time)
an option is encountered on the command line can be achieved by
designating a reference to a subroutine (or an anonymous subroutine)
as the option destination. When A trivial application of this mechanism is to implement options that are related to each other. For example:
my $verbose = ''; # option variable with default value (false)
GetOptions ('verbose' => \$verbose,
'quiet' => sub { $verbose = 0 });
Here If the subroutine needs to signal an error, it should call If the text of the error message starts with an exclamantion mark
Options with multiple namesOften it is user friendly to supply alternate mnemonic names for
options. For example
GetOptions ('length|height=f' => \$length);
The first name is called the primary name, the other names are called aliases. Multiple alternate names are possible.
Case and abbreviationsWithout additional configuration,
GetOptions ('length|height=f' => \$length, "head" => \$head);
This call will allow
Summary of Option SpecificationsEach option specifier consists of two parts: the name specification and the argument specification. The name specification contains the name of the option, optionally followed by a list of alternative names separated by vertical bar characters.
length option name is "length"
length|size|l name is "length", aliases are "size" and "l"
The argument specification is optional. If omitted, the option is considered boolean, a value of 1 will be assigned when the option is used on the command line. The argument specification can be
Advanced Possibilities
Documentation and help textsGetopt::Long encourages the use of Pod::Usage to produce help messages. For example:
use Getopt::Long;
use Pod::Usage;
my $man = 0;
my $help = 0;
GetOptions('help|?' => \$help, man => \$man) or pod2usage(2);
pod2usage(1) if $help;
pod2usage(-exitstatus => 0, -verbose => 2) if $man;
__END__
=head1 NAME
sample - Using GetOpt::Long and Pod::Usage
=head1 SYNOPSIS
sample [options] [file ...]
Options:
-help brief help message
-man full documentation
=head1 OPTIONS
=over 8
=item B<-help>
Print a brief help message and exits.
=item B<-man>
Prints the manual page and exits.
=back
=head1 DESCRIPTION
B<This program> will read the given input file(s) and do someting
useful with the contents thereof.
=cut
See the Pod::Usage manpage for details.
Storing options in a hashSometimes, for example when there are a lot of options, having a
separate variable for each of them can be cumbersome. To obtain this, a reference to a hash must be passed as the first
argument to GetOptions(). For each option that is specified on the
command line, the option value will be stored in the hash with the
option name as key. Options that are not actually used on the command
line will not be put in the hash, on other words,
my %h = ();
GetOptions (\%h, 'length=i'); # will store in $h{length}
For options that take list or hash values, it is necessary to indicate
this by appending an
GetOptions (\%h, 'colours=s@'); # will push to @{$h{colours}}
To make things more complicated, the hash may contain references to the actual destinations, for example:
my $len = 0;
my %h = ('length' => \$len);
GetOptions (\%h, 'length=i'); # will store in $len
This example is fully equivalent with:
my $len = 0;
GetOptions ('length=i' => \$len); # will store in $len
Any mixture is possible. For example, the most frequently used options could be stored in variables while all other options get stored in the hash:
my $verbose = 0; # frequently referred
my $debug = 0; # frequently referred
my %h = ('verbose' => \$verbose, 'debug' => \$debug);
GetOptions (\%h, 'verbose', 'debug', 'filter', 'size=i');
if ( $verbose ) { ... }
if ( exists $h{filter} ) { ... option 'filter' was specified ... }
BundlingWith bundling it is possible to set several single-character options
at once. For example if
-vax
would set all three. Getopt::Long supports two levels of bundling. To enable bundling, a call to Getopt::Long::Configure is required. The first level of bundling can be enabled with:
Getopt::Long::Configure ("bundling");
Configured this way, single-character options can be bundled but long
options must always start with a double dash
-vax
would set
--vax
would set The second level of bundling lifts this restriction. It can be enabled with:
Getopt::Long::Configure ("bundling_override");
Now, When any level of bundling is enabled, option values may be inserted in the bundle. For example:
-h24w80
is equivalent to
-h 24 -w 80
When configured for bundling, single-character options are matched case sensitive while long options are matched case insensitive. To have the single-character options matched case insensitive as well, use:
Getopt::Long::Configure ("bundling", "ignorecase_always");
It goes without saying that bundling can be quite confusing.
The lonesome dashSome applications require the option
GetOptions ('' => \$stdio);
A lone dash on the command line will now be legal, and set options
variable
Argument call-backA special option 'name' For example:
my $width = 80;
sub process { ... }
GetOptions ('width=i' => \$width, '<>' => \&process);
When applied to the following command line:
arg1 --width=72 arg2 --width=60 arg3
This will call
This feature requires configuration option permute, see section Configuring Getopt::Long.
Configuring Getopt::LongGetopt::Long can be configured by calling subroutine
Getopt::Long::Configure(). This subroutine takes a list of quoted
strings, each specifying a configuration option to be set, e.g.
The following options are available:
Return values and ErrorsConfiguration errors and errors in the option definitions are
signalled using A return value of 1 (true) indicates success. A return status of 0 (false) indicates that the function detected one
or more errors during option parsing. These errors are signalled using
Errors that can't happen are signalled using Carp::croak().
LegacyThe earliest development of
Default destinationsWhen no destination is specified for an option, GetOptions will store
the resultant value in a global variable named
our $opt_length = 0;
GetOptions ('length=i'); # will store in $opt_length
To yield a usable Perl variable, characters that are not part of the
syntax for variables are translated to underscores. For example,
GetOptions ("size=i", "sizes=i@");
with command line ``-size 10 -sizes 24 -sizes 48'' will perform the equivalent of the assignments
$opt_size = 10;
@opt_sizes = (24, 48);
Alternative option startersA string of alternative option starter characters may be passed as the first argument (or the first argument after a leading hash reference argument).
my $len = 0;
GetOptions ('/', 'length=i' => $len);
Now the command line may look like:
/length 24 -- arg
Note that to terminate options processing still requires a double dash
Configuration variablesPrevious versions of Getopt::Long used variables for the purpose of
configuring. Although manipulating these variables still work, it
is strongly encouraged to use the new
AUTHORJohan Vromans <jvromans@squirrel.nl>
COPYRIGHT AND DISCLAIMERThis program is Copyright 2000,1990 by Johan Vromans. This program is free software; you can redistribute it and/or modify it under the terms of the Perl Artistic License or the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. If you do not have a copy of the GNU General Public License write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|