in reply to Re^4: Dynamic option
in thread Dynamic option
If you make the call syntax like:
Something like:findfiles --input data modem apps --nd --na --nc --des "..." -r 1000
Should do the trick.GetOptions 'input=s{0,}' => \my @input, 'na' => \my $na, 'nd' => \my $nd, 'nc' => \my $nc, 'des=s' => \my $des, 'r=i' => \my $r;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^6: Dynamic option
by ikegami (Patriarch) on Mar 16, 2011 at 15:04 UTC |