Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I set default values using Getopt::Std?

Tags:

perl

getopt

I am trying to collect the values from command line using Getopt::Std in my Perl script.

use Getopt::Std;
$Getopt::Std::STANDARD_HELP_VERSION = 1;
getopts('i:o:p:');
my $inputfile = our $opt_i;
my $outputfile = our $opt_o;
my $parameter_value = our $opt_p;

Here the first two variables ($inputfile,$outputfile) are mandatory but the last variable ($parameter_value) is optional and can be ignored.

I am trying to set some value by default to the last variable ($parameter_value) when the -p flag is ignored at the command line.

I tried using this:

my $parameter_value = our $opt_p || "20";

Here its passes the correct value when -p flag is ignored at command line. But the problem is when I am providing some value from the command line (for instance -p 58), the same value 20 is passed to the program instead of 58 which I passed from command line.

Can you please help me out by pointing the mistakes I am making here?

Thank you.

like image 388
Suren Avatar asked Oct 22 '09 18:10

Suren


2 Answers

The best thing is to use Getopt::Long and use a hash instead of individual variables. Then you can pass default values by pre-populating the array

    use Getopt::Long;
    my %opts = (parameter => 20);
    GetOptions( \%opts, 
            'p|parameter=i', 
            'o|outputfile=s',
            'i|inputfile=s'
    ) or die "Invalid parameters!";

    # I didn't bother cloning STANDARD_HELP_VERSION = 1;
like image 70
DVK Avatar answered Oct 13 '22 22:10

DVK


#/usr/bin/perl

use strict;
use warnings;

use Getopt::Std;

getopts('i:o:p:');
our($opt_i, $opt_o, $opt_p);

my $inputfile = $opt_i;
my $outputfile = $opt_o;
my $parameter_value = $opt_p || "20";

print "$_\n" for $inputfile, $outputfile, $parameter_value;
C:\Temp> ks -iinput -ooutput -p55
input
output
55
C:\Temp> ks -iinput -ooutput
input
output
20
like image 41
Sinan Ünür Avatar answered Oct 13 '22 21:10

Sinan Ünür