Getopt::Long
普通の使い方
use Getopt::Long;
$debug;
GetOptions('debug' => \$debug);
print "$debug\n";
> ./1.pl --debug
1
> ./1.pl --debug2
Unknown option: debug2
引数を取る
use Getopt::Long;
$year;
$debug;
GetOptions('year=i' => \$year,
'debug=s' => \$debug);
print "$year\n$debug\n";
> ./1.pl --year 2006 --debug test
2006
test
--nodebugみたいに否定・肯定を判定する
#!/usr/bin/perl
use Getopt::Long;
$debug;
GetOptions('debug!' => \$debug);
print "$debug\n";
> ./1.pl --debug
1
> ./1.pl --nodebug
0
カウントする
#!/usr/bin/perl
use Getopt::Long;
$debug;
GetOptions('debug+' => \$debug);
print "$debug\n";
> ./1.pl --debug
1
> ./1.pl --debug --debug
2