Help for this page

Select Code to Download


  1. or download this
    use Getopt::Long qw( :config bundling noignorecase passthrough );
    GetOptions (
        "help|?"    => sub { usage 0; },
    ...
        "A|all!"    => \my $opt_a,
        "N|no-pfx!" => \my $opt_N,
        ) or usage 1;