私はperlスクリプトで次のコードを持っている:
my $directory;
my @files;
my $help;
my $man;
my $verbose;
undef $directory;
undef @files;
undef $help;
undef $man;
undef $verbose;
GetOptions(
"dir=s" =>
これは私が、コマンドライン引数の取り扱いをテストするために書かれている簡単なスクリプトです: use Getopt::Long;
my $help = 0;
GetOptions(
'help|h|?' => \$help,
) or die "Error!";
print "OK\n";
私が得た結果は次のとおりです。 D:\>perl test.pl --help
OK