http://qs321.pair.com?node_id=79169


in reply to Command Line Options

I'm with isotope. I find that command line parms with longer names are easier to remember. I generally use Getopt::Long something like this:
GetOptions("file=s" => \my $input_file, "verbose" => \$VERBOSE, "help" => \my $HELP) or die "Insert usage message here";
Getopt::Long is also flexible enough to allow bundling of single-character options like Getopt::Std.

- robsv