The following reply was made to PR misc/157491; it has been noted by GNATS.

From: Eitan Adler <[email protected]>
To: [email protected], [email protected]
Cc:  
Subject: Re: misc/157491: update ls/rm/mv/cp tools to be able to handle large
 amount of files
Date: Wed, 1 Jun 2011 11:59:36 +0000

 The limit is not in these tools. It is a constant number, defined in
 bytes, in the kernel. This is designed to keep the amount of memory
 required to store these command line options bounded.
 You could see the value with
 $getconf ARG_MAX
 262144
 
 I suggest you use find + xargs which automatically will figure out the
 correct number of arguments and run the command for you.
 
 -- 
 Eitan Adler
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "[email protected]"

Reply via email to