Getopt::Tabular

Getopt::Tabular is a Perl module for table-driven argument parsing for Perl 5.
Download

Getopt::Tabular Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Greg Ward
  • Publisher web site:
  • http://search.cpan.org/~ambs/Text-BibTeX-0.37/BibTeX/Name.pm

Getopt::Tabular Tags


Getopt::Tabular Description

Getopt::Tabular is a Perl module for table-driven argument parsing for Perl 5. Getopt::Tabular is a Perl module for table-driven argument parsing for Perl 5.SYNOPSIS use Getopt::Tabular;(or) use Getopt::Tabular qw/GetOptions SetHelp SetHelpOption SetError GetError/; ... &Getopt::Tabular::SetHelp (long_help, usage_string); @opt_table = ( , , ... ); &GetOptions (@opt_table, @ARGV ) || exit 1;Getopt::Tabular is a Perl 5 module for table-driven argument parsing, vaguely inspired by John Ousterhout's Tk_ParseArgv. All you really need to do to use the package is set up a table describing all your command-line options, and call &GetOptions with three arguments: a reference to your option table, a reference to @ARGV (or something like it), and an optional third array reference (say, to @newARGV). &GetOptions will process all arguments in @ARGV, and copy any leftover arguments (i.e. those that are not options or arguments to some option) to the @newARGV array. (If the @newARGV argument is not supplied, GetOptions will replace @ARGV with the stripped-down argument list.) If there are any invalid options, GetOptions will print an error message and return 0. Requirements: · Perl


Getopt::Tabular Related Software