Thread [Getopt::Long] getOptions - Fehlerermittlung bei gleicher Option (14 answers)
Opened by bora99 at 2015-09-10 11:41

bora99
 2015-09-10 11:41
#182124 #182124
User since
2009-12-05
54 Artikel
BenutzerIn
[default_avatar]
Hallo,

bietet getOptions die Möglichkeit einen Fehler zu liefern, wenn die Option öfters angegeben wird ?
Bei meinem Beispiel wird kein Fehler geliefert

Beispiel:

testoption.pl -o option # in Ordnung
testoption.pl -o option -o option # ist nicht Ordnung

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl -w

use strict;
use Getopt::Long;

my %Args = ();
my $option = "";
my $help = 0;

my $InOpts = GetOptions( \%Args,
'o|option=s' => \$option,
'h|help' => \$help ) or die "usage option ...";

print "$help\n";

print "Usage ..." if( ! $InOpts);
print "help ..." if( $help );

View full thread [Getopt::Long] getOptions - Fehlerermittlung bei gleicher Option