Help for this page

Select Code to Download


  1. or download this
    ;# getopts.pl - a better getopt.pl
    #
    ...
    sub Getopts {
     ...
    
  2. or download this
    $result = GetOptions ( "all"      => \$opt_a,
                           "force"    => \$opt_f,
    ...
                           "number=i" => \$opt_n,
                           "backup=s" => \$opt_b
    );