vote up 7 vote down star

I'm working on a Perl script. First time in more than a decade. Really.

How can I pass command line parameters to it?

Example:

script.pl "string1" "string2"
flag

37% accept rate

6 Answers

vote up 17 vote down check

Depends on what you want to do. If you want to use the two arguments as input files, you can just pass them in and then use <> to read their contents.

If they have a different meaning, you can use GetOpt::Std and GetOpt::Long to process them easily. GetOpt::Std supports only single-character switches and GetOpt::Long is much more flexible. From GetOpt::Long:

use Getopt::Long;
my $data   = "file.dat";
my $length = 24;
my $verbose;
$result = GetOptions ("length=i" => \$length,    # numeric
                    "file=s"   => \$data,      # string
                    "verbose"  => \$verbose);  # flag

Alternatively, @ARGV is a special variable that contains all the command line arguments. $ARGV[0] is the first (ie. "string1" in your case) and $ARGV[1] is the second argument. You don't need a special module to access @ARGV.

link|flag
$ARGV[0] is the first argument; perl counts from 0, and the program name is in $0 not @ARGV. – derobert Dec 12 '08 at 5:50
despite the $ARGV[0] confusion .. this is the kind of answer I hope to find, when I search SO, thanks and +1 from me. – lexu Dec 12 '08 at 6:23
$ARGV variable is what I will use then. Thanks. – lamcro Dec 12 '08 at 11:22
vote up 8 vote down

You pass them in just like you're thinking, and in your script, you get them from the array @ARGV. Like so:

$numArgs = $#ARGV + 1;
print "thanks, you gave me $numArgs command-line arguments.\n";

foreach $argnum (0 .. $#ARGV) {

   print "$ARGV[$argnum]\n";

}

From here.

link|flag
It's also worth noting that in some programming languages the first (0) argument is the command or script itself... not so in perl though, of course. – danieltalsky Dec 12 '08 at 5:46
Instead of $#ARGV + 1 you could also have said @ARGV – Leon Timmermans Dec 12 '08 at 9:21
Yup. I went with an already posted example on the net. It was late and I wanted to get to bed. Also, TMTOWTDI! :-) – George Stocker Dec 12 '08 at 11:21
vote up 7 vote down
foreach my $arg (@ARGV) {
    print $arg, "\n";
}

will print each argument.

link|flag
When I try this code: syntax error at line 3 : `(' unexpected – lamcro Dec 12 '08 at 15:07
If not using getopts, this is how I would recommend non-destructively traversing an argument list. Based on perlmeme.org/howtos/syntax/… it looks like the syntax is correct; for a caveat, check the section, Side-effects : The control variable is an alias to the list element – jaredor Dec 12 '08 at 15:32
My error. Forgot to put the exclamation(!) in the first line: #!/usr/bin/perl – lamcro Dec 12 '08 at 17:40
vote up 3 vote down

If the arguments are filenames to be read from, use the diamond (<>) operator to get at their contents:

while (my $line = <>) {
  process_line($line);
}

If the arguments are options/switches, use GetOpt::Std or GetOpt::Long, as already shown by slavy13.myopenid.com.

On the off chance that they're something else, you can access them either by walking through @ARGV explicitly or with the shift command:

while (my $arg = shift) {
  print "Found argument $arg\n";
}

(Note that doing this with shift will only work if you are outside of all subs. Within a sub, it will retrieve the list of arguments passed to the sub rather than those passed to the program.)

link|flag
vote up 1 vote down

If you just want some values, you can just use the @ARGV array. But if you are looking for something more powerful in order to do some command line options processing, you should use Getopt::Long.

link|flag
vote up 0 vote down

Funny, I forgot to specify the datatype using Getopt (passing an integer, '=i') and the result was that a 0 became a 1, but a 1 remained a 1 and a 2 a 2 and so on.

Cheers

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.