Is there any way to check my input (value) is provided or not when using GetOptions
?
#file testing.pl
#!/usr/5.14.1/bin/perl
use strict;
use Getopt::Long qw(:config no_ignore_case no_auto_abbrev);
Getopt::Long::Configure("no_pass_through");
#default value
my $testing = 0;
my $loc = undef;
my %opt_map {
"-test" => $testing,
"-location=s" => $loc,
}
GetOptions(%opt_map) or die("Parameter is not exist");
then I call the file with:
testing.pl -test -location /a/bc/def
Is there anyway to check /a/bc/def
is provided or not? The option is optional but the value is mandatory.
If /a/bc/def
is not provided then the $location
value is became 1
instead of undef.
AND if -location argument is on the front, it will consume the next option as its value. example:
testing.pl -location -test
#the result is
$loc = "-test"
You can find the documentation for Getopt::Long here or by typing
perldoc Getopt::Long
in your terminal.Update:
If you specify
"-location=s" => \$loc
(mandatory) and"-test" => \$test,
(optional), then after calling withtest.pl --location --test
GetOptions places '--test' in$loc
leaving$test
undefined. (Perhaps to satisfy both conditions?)One solution to this is to make
"-location:s" => \$loc
optional (see the other answer), then check the variables after GetOptions() was called. In your case$loc
would be allowed to beundef
(not specified) or a non-empty string.trying it: