Help for this page

Select Code to Download


  1. or download this
    
    unless ( GetOptions (
    ...
    
    if (defined $par_help){my_show_help();exit;}
    
  2. or download this
    unless ( GetOptions (
                            "example=s" => \$par_example, # string needed
    ...
        print "\n\nPress return when ready...\n";
        while (<STDIN>){last if $_ }
    }