NAME
Getopt::WonderBra - Lift and Separate Command Line Options
SYNOPSIS
use
Getopt::WonderBra;
@ARGV
= getopt(
'opts:-:'
,
@ARGV
);
sub
help() {
"Useless help message"
; };
sub
version() {
"Useless version message"
; };
while
( (
$_
=
shift
) ne
'--'
) {
if
(/^-o$/) {
$opt_o
++ }
elsif
(/^-p$/) {
$opt_p
++ }
elsif
(/^-t$/) {
$opt_t
++ }
elsif
(/^-s$/) {
push
(
@opt_s
,
shift
); }
elsif
(/^--/) {
push
(
@opt_long
,
$_
); }
else
{
die
'I do not grok -'
,
$_
; }
}
"-o given $opt_o times"
if
$opt_o
;
"-p given $opt_p times"
if
$opt_p
;
"-t given $opt_t times"
if
$opt_t
;
"-s given with arg $_"
for
@opt_s
;
"long opt $_ given"
for
@opt_long
;
""
;
" param: $_"
for
@ARGV
;
REQUIRES
perl5.008006, Carp, Exporter
EXPORTS
getopt($@)
DESCRIPTION
See eg/WonderBra.pl for an example of usage.
There just weren't enough command line processessing modules, so I had to write my own. Actually, it exists because it made it easy to port shell scripts to perl: it acts just like the getopt program. Oddly, none of the modules that are actually named after it do. (Though some act like the C function) The following sequence chops your args up and gives 'em to you straight:
HELP
main::help() must exist prior to calling getopt(). It is wrapped by this module. This is done to ensure correct behavior for programs that use getopt. (e.g. error messages to stdout if --help in specified, so $ foo --help | less has the desired results)
main::help() is replaced by a wrapper that will exit the program. If it gets args, it will select STDERR, call your help function, print the passed args, and exit non-zero.
Otherwise, it will select STDOUT, call your help function, and exit non-zero.
Note that the program will exit if you call help after calling getopt, as well. This is not a bug. It's for issuing error messages while handling the parsed args.
The wrapper sub never returns.
VERSION
If you define a main::version() sub, it will be called if the user specified --version, and the program will terminate.
STDOUT will always be selected.