in reply to RFC Getopt::Hash
use Getopt::Long; my %opt = ( 'option_name' => 'default_value', 'element' => 0, 'count' => 5, ); GetOptions( \%opt, 'option_name|on:s', 'element|e!', 'count|cnt|c=i', );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: RFC Getopt::Hash
by radiantmatrix (Parson) on Aug 09, 2005 at 16:23 UTC | |
by BUU (Prior) on Aug 09, 2005 at 18:05 UTC | |
by radiantmatrix (Parson) on Aug 09, 2005 at 18:15 UTC |