in reply to Another Getopt::Long questions
I get the following:use strict; use warnings; use Getopt::Long; use Data::Dumper; my %options; GetOptions( \%options, 'length|height=i', ); print Dumper \%options;
E:\>go.pl --height=1 $VAR1 = { 'length' => 1 }; E:\>go.pl --length=1 $VAR1 = { 'length' => 1 };
-enlil
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Another Getopt::Long questions
by kelan (Deacon) on Apr 10, 2003 at 14:42 UTC |