
Jasmine
Administrator
Jan 26, 2001, 10:18 AM
Post #1 of 1
(3113 views)
|
Why do I sometimes get an "Argument list too long"
|
Can't Post
|
|
(From the Perl FAQ) Why do I sometimes get an "Argument list too long" when I use <*>? The <> operator performs a globbing operation. By default glob() forks csh(1) to do the actual glob expansion, but csh can't handle more than 127 items and so gives the error message Argument list too long. People who installed tcsh as csh won't have this problem, but their users may be surprised by it. To get around this, either do the glob yourself with Dirhandles and patterns, or use a module like Glob::KGlob, one that doesn't use the shell to do globbing.
|