On Wednesday 26 May 2010 06:42:08 Joerg Schilling wrote:
> Patrick Holthaus <patrick.holth...@uni-bielefeld.de> wrote:
> > You might try:
> >
> > find -name *.ext -print0 | xargs -0 rm
> 
> But this is non-standard.

In what way is this non-standard?  That is, what standard is it contrary to?  
TMTOWTDI (There's More Than One Way To Do It) applies just as strongly to *nix 
in general as it does to Perl.  When there are multiple ways to do something, 
it's often either a user preference issue or the method should be decided 
based upon the particular details of the desired result.  -exec may be a POSIX 
standard function, but that doesn't mean it must be used over other options or 
you're breaking the standard.
 
> UNIX introduced -exec {} + 1990 (when David Korn rewrote find(1)
> and it is in the POSIX standared since some time.

-exec (which potentially has problems with race conditions - -execdir should 
almost always be used instead) runs the command once for each file found.  
xargs will call the command once for as many files as it can fit on the command 
line.  For some instances, like rm, that probably isn't significant.  But if 
you're calling a complex process with lots of files, the overhead of starting 
the many extra processes may be significant.

-- 
"You have attributed conditions to villainy that simply result from 
stupidity." - Robert A. Heinlein

Reply via email to