On Fri, Apr 06, 2001 at 03:00:37PM -0400, Larry Jones wrote:
> You can if you have the GNU versions of find and xargs:
> 
>       find . -print0 | xargs -0 ...
> 
> (Actually, all you need is GNU xargs:
> 
>       find . -print | tr '\n' '\0' | xargs -0 ...

Well, GNU's find and xargs are distributed in the same package
(findutils), so this shouldn't be too much of an issue :-)

--

|  | /\
|-_|/  >   Eric Siegerman, Toronto, Ont.        [EMAIL PROTECTED]
|  |  /
With sufficient thrust, pigs fly just fine. However, this is not
necessarily a good idea.
        - RFC 1925 (quoting an unnamed source)

_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to