|
|
| Syntactic Confectionery Delight | |
| PerlMonks |
Re: get array from getoptionsby ctilmes (Priest) |
| on Aug 19, 2008 at 16:46 UTC ( #705261=note: print w/ replies, xml ) | Need Help?? |
|
First:, add "use strict; use warnings;" to the top. Getopt::Long doesn't handle something like "-f test_1 test_2". It will handle "-f test_1 -f test_2" or "-f test_1,test_2" (you do the split), or even "-f 'test_1 test_2'" (again, split after you get the args). Alternately, you can have it treat -f as a boolean, then grab the filenames test_1 and test_2 from @ARGV after Getopt::Long has done its thing.
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||