I'm working on a Perl script. How can I pass command line parameters to it?
Example:
script.pl "string1" "string2"
|
I'm working on a Perl script. How can I pass command line parameters to it? Example:
|
||||
|
|
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:
Alternatively, |
||||
|
You pass them in just like you're thinking, and in your script, you get them from the array
From here. |
|||||||||||||
|
will print each argument. |
|||||||
|
|
Alternatively, a sexier perlish way.....
"Assumes" two values are passed. Extra code can verify the assumption is safe. |
|||||
|
|
Yet another options is to use perl -s, eg:
Then call it like this :
Or see the original article for more details: |
|||
|
|
|
If the arguments are filenames to be read from, use the diamond (<>) operator to get at their contents:
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
(Note that doing this with |
|||
|
|
|
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. |
|||
|
|
|
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 |
|||
|
|
|
u can directly use them by assigning to a variables: ( $st, $prod, $ar, $file, $chart, $e, $max, $flag ,$id) = @ARGV; |
|||
|
|