in reply to Trickery with Getopt::Long (flag option, with optional integer arg)
use warnings; use strict; use Getopt::Long; my $arg = -1; GetOptions('arg:i' => \$arg) or die; print "$arg\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Trickery with Getopt::Long (flag option, with optional integer arg)
by stevieb (Canon) on Aug 18, 2017 at 15:14 UTC |