in reply to
Parsing your script's command line
Nice tutorial. One minor disagreement, though:
Getopt::Long
is quite happy with single-character switches. If you want to bundle them (as in, '-vax' means the same as '-v -a -x'), you have to call:
Getopt::Long::Configure ("bundling");
[download]
Comment on
Re: Parsing your script's command line
Download
Code
In Section
Tutorials