![]() |
|
Do you know where your variables are? | |
PerlMonks |
Re: perl: Argument list too longby pc88mxer (Vicar) |
on May 03, 2008 at 04:54 UTC ( #684304=note: print w/replies, xml ) | Need Help?? |
This is a kernel limitation. Shell arguments and environment variables are allocated from the same space and are limited to some number of pages - usually something like 32.
You'll probably have to come up with another way to pass your arguments, such as reading them through STDIN or passing them in a file. For more discussion about this problem, see "Argument list too long": Beyond Arguments and Limitations Here's a script to test what the limits for %ENV are:
In Section
Seekers of Perl Wisdom
|
|