Getopt-Alt

 view release on metacpan or  search on metacpan

lib/Getopt/Alt.pm  view on Meta::CPAN

740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
           'int|i=i',
       ],
   );
 
=head1 DESCRIPTION
 
The aim of C<Getopt::Alt> is to provide an alternative to L<Getopt::Long> that
allows a simple command line program to easily grow in complexity. L<Getopt::Lon>
can be expanded from a simple command line option passer to allow sub-commands.
Option processing may stop at the sub-command or with the help of modules can
cascade the processing into the sub command's module or config.
 
The simple usage is quite similar to L<Getopt::Long>:
 
In C<Getopt::Long> you might get your options like:
 
 use Getopt::Long;
 my %options = ( string => 'default' );
 GetOptions(
     \%options,
     'string|s=s',



( run in 0.237 second using v1.01-cache-2.11-cpan-cba739cd03b )