5 lines
99 B
Perl
5 lines
99 B
Perl
use Getopt::Long;
|
|
GetOptions (
|
|
'help|h' => \my $help,
|
|
'verbose|v' => \my $verbose,
|
|
);
|