Linux Ask!

Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.

Jan 132010
 

Read command line arguments in Perl

Answer:

To read the command line arguments in Perl, you need to play with the special array $ARGV

E.g. test.pl

#!/usr/bin/perl
use strict;

print $ARGV[0];

Then execute

# perl test.pl hello
hello

The first argument will be printed to the screen.

 Leave a Reply

(required)

(required)

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>