in reply to Re^2: Combining two scripts with a command line switch?
in thread Combining two scripts with a command line switch?
Paulmy ($read,$generate,$help); # option switches GetOptions ( "help" => \$help, "read" => \$read, "generate" => \$generate, ); die "$Usage\n" unless $read || $generate;
|
|---|