in reply to Range in Getopt
use Getopt::Long; my $_debug; GetOptions('d=i' => sub { $_debug = $_[1]; ($_debug > 0 && $_debug <= 4) or die "Invalid Debug Level ($_d +ebug)" } ) and warn $_debug;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Range in Getopt
by roho (Bishop) on Oct 03, 2012 at 13:26 UTC | |
by james2vegas (Chaplain) on Oct 03, 2012 at 18:34 UTC |