On Tuesday, 24 December 2002 at 17:25:23 -0500, Bill Moran wrote: > d/l the entire php documentation as individual html files. > This equates to a LOT of files in a single directory (how can > I get a count of this?) > Anyway, I'm trying to find the docs on some features that > the www.php.net's search isn't really helping on (searching > for __FILE__ doesn't search for __FILE__ ... it searches for > file, and there's too many results) so I try: > grep __FILE__ *.html > and I get the error: > -bash: /usr/bin/grep: Argument list too long > Is this a shortcoming of bash, grep or FreeBSD? I'm assuming > it's not grep, as the command: > find . -name *.html -print | xargs grep __FILE__ > yeilds: > -bash: /usr/bin/find: Argument list too long
Well, it's not a shortcoming. These argument lists get passed into the kernel by execve(), which changes the process image. There's only a certain size you can put in. > I did a little research, and Linux has the MAX_ARG_PAGES kernel > option to increase the size of the command line arguments it can > process ... does FreeBSD have such a kernel option, Well, we used to have an ARGSMAX variable, but it has now been replaced by a sysctl kern.argmax. It's set to 65536 by default. You could increase it, but at some point you'll always run into problems. You can't make it longer than physical memory, for example. > or some other way of overcoming this limit? That's what the xargs program is for. You just used it incorrectly. It should be: find . -name '*.html' -print | xargs grep __FILE__ Putting the '' around the name stops the shell from trying to expand it. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply or reply to the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address and phone numbers To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message