The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Getopt::Euclid

       Getopt::Euclid uses your program's own documentation to create a com-
       mand-line argument parser. This ensures that your program's documented
       interface and its actual interface always agree.

       To use the module, you simply write:

           use Getopt::Euclid;

       at the top of your program.

       When the module is loaded within a regular Perl program, it will:

            1.  locate any POD in the same file,
            2.  extract information from that POD, most especially
                from the "=head1 REQUIRED ARGUMENTS" and "=head1
                OPTIONS" sections,
            3.  build a parser that parses the arguments and options the
                POD specifies,
            4.  parse the contents of @ARGV using that parser, and
            5.  put the results in the global %ARGV variable.


INSTALLATION

To install this module, run the following commands:

    perl Makefile.PL
    make
    make test
    make install


Alternatively, to install with Module::Build, you can use the following commands:

    perl Build.PL
    ./Build
    ./Build test
    ./Build install



DEPENDENCIES

File::Basename
File::Spec::Functions
List::Util
Text::Balanced
Perl::Tidy


COPYRIGHT AND LICENCE

Copyright (C) 2005, Damian Conway

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.