NAME

Options - a Perl module for handling programm arguments, commandline in and output inclusive login requests

SYNOPSIS

use Options;

DESCRIPTION

Preface

This module contains functions that are used to get and set simply program arguments from commanline and small handling for commandline in and output. The following options are predefined for defining the argument types:

  my $option_options = {
    ""                  => "",
    "!"                 => "",
    "=s"                => "=STRING",
  ":s"          => "[=STRING]",
  "=i"          => "=INTEGER",
  ":i"                  => "[=INTEGER]",
  "=f"          => "=FLOAT",
  ":f"                  => "[=FLOAT]",
};

And in addition the predefined arguments:

register(
  ["help",                    "h", "",   "display this help"],
  ["verbose",         "v", "",   "print verbose messages"],
  ["log",                     "l", ":s", "print messages to file instead of stdout"],#, "log filename", "$0.log"],
  ["not",                     "n", "",   "do not perform any actual work"],
);

Implemented Functions:

POD ERRORS

Hey! The above document had some coding errors, which are explained below:

Around line 225:

=over without closing =back