info-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: refactoring when using CVS


From: Kaz Kylheku
Subject: Re: refactoring when using CVS
Date: Fri, 22 Feb 2002 16:09:39 GMT
User-agent: slrn/0.9.6.3 (Linux)

In article <address@hidden>, Noel Yap wrote:
>--- Kaz Kylheku <address@hidden> wrote:
>>      find . -name '*.java' -print0 | xargs -0 javac
>
>Keep in mind that since xargs has a size limit, you
>may wind up doing a little more recompilation than
>necessary. 
>
>I prefer the back quote method under a
>shell with no command length limitation and forbidding
>spaces and special characters in file names.

It's your OS kernel that imposes the limitation, not the shell. The
limitation is on how much argv[] and env[] crap can be passed to
a child process. 

So the backquote method will simply blow up if that limit is exceeded.

-- 
Meta-CVS: version control with directory structure versioning over top of CVS.
http://users.footprints.net/~kaz/mcvs.html


reply via email to

[Prev in Thread] Current Thread [Next in Thread]