in reply to
passing parameters to perl from shell script
Parameters are passed to the script via
@ARGV
. The core module
Getopt::Long
(and
other modules
) can help you extract switches from your parameters.
Comment on
Re: passing parameters to perl from shell script
In Section
Seekers of Perl Wisdom