Re: can't able to understand this behaviour of Getopt::Long

2001-08-03 Thread Michael Fowler
On Fri, Aug 03, 2001 at 04:05:33PM +0530, Rajanikanth Dandamudi wrote: > - > #!/usr/local/bin/perl > use Getopt::Long; > > my $filename; > print "Before : ARGV = @ARGV\n"; > $ret = GetOptions('abc=s' =>\$filename); > print "Return value = $ret "; >

can't able to understand this behaviour of Getopt::Long

2001-08-03 Thread Rajanikanth Dandamudi
Hello, I am not able to understand the following behaviour of perl Getopt::Long. Here is the snippet of code that I am not able to understand: Start of code - #!/usr/local/bin/perl use Getopt::Long; my $filename; print "Before : ARGV = @ARGV\n"