Afaik no kernel but HURD does not impose a software level hard limit on the number of arguments. On darwin, IIRC, the buffer is at most 64K in length. I think Linux is in the same ballpark.
These may be defaults to kernel params, or even sysctlable, but there is a limit, and it isn't very big. I would suggest following on the advice that others gave you, to open a pipe.
I would do it with a pipe to self, or by piping to $^X:
defined(my $pid = open my $child, "|-") or die "$!";
if ($pid){ # parent
print $child "$args";
} else { #child
my $args = <STDIN>;
}
# or for an exec, at least run $^X instead of "perl":
open my $child, "|$^X", $scriptfile;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.