in reply to Re: perl2exe with -s
in thread perl2exe with -s
Thanks for your help. I've done somthing like this in the past, and I didn't really wont to change the code at this stage but needs must.
The good people at Indigostar also came up with thisuse Getopt::Long; my ($verbose, $quiet, $test, $debug, $help) = (0,0,0,0,0); GetOptions ('verbose' => \$verbose, 'quiet' => \$quiet, 'test' => \$test, 'help' => \$help, 'debug' => \$debug);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: perl2exe with -s
by Anonymous Monk on Sep 16, 2004 at 18:23 UTC |