in reply to Re^2: Command-line arguments to command-line Perl
in thread Command-line arguments to command-line Perl
I recommend that you read about it in "perldoc perlrun".
In your example you seem to expect that "ConfigFile" is treated as the name of the file that -p workes on and all the other command-line arguments go to @ARGV.
This is wrong.
What happens is that ALL arguments (including "ConfigFile") go to @ARGV but then are treated (via -p's magic) as filenames. This is why you get the error.
So you have to pass your data to perl via some other mechanism if you want to use -p (I would use an environment variable).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Command-line arguments to command-line Perl
by RecursionBane (Beadle) on Oct 04, 2010 at 04:58 UTC |