Help for this page

Select Code to Download


  1. or download this
    my $ok = GetOptions( \%args, 'i=s', 'o=s', 'w=i', 's=i', 'help|?', );
    
    usage() if ! $ok || $args{'help'};
    
  2. or download this
    foreach my $opt (qw( i o )) {
        usage() unless $args{$opt} =~ /\D/;
    }