Thread [Getopt::Long] getOptions - Fehlerermittlung bei gleicher Option
(14 answers)
Opened by bora99 at 2015-09-10 11:41
Getopt::Long hat da keine Grenze bei der es schreit, wenn zuviel Parameter drin sind.
Da musst du die Werte als Array einlesen und die Anzahl der Werte prüfen. Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 use strict; use warnings; use Getopt::Long; my @option; my $InOpts = GetOptions( 'o|option:s' => \@option ) or die "usage option ..."; die "Too much -o!!! @option \n" if @option>1; |