[BACK]Return to find.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / find

Diff for /src/usr.bin/find/find.1 between version 1.62 and 1.63

version 1.62, 2006/10/11 11:46:04 version 1.63, 2006/10/11 12:26:00
Line 188 
Line 188 
 will be executed from the directory from which  will be executed from the directory from which
 .Nm  .Nm
 was executed.  was executed.
   .Pp
   Since
   .Ar utility
   is executed every time a match is made,
   it is often more efficient to pipe the output of
   .Nm
   to
   .Xr xargs 1 .
 .It Xo  .It Xo
 .Ic -execdir Ar utility  .Ic -execdir Ar utility
 .Op argument ...  .Op argument ...
Line 534 
Line 542 
 Find and remove all *.jpg files in the current working directory:  Find and remove all *.jpg files in the current working directory:
 .Pp  .Pp
 .Dl "$ find . -name \e*.jpg -exec rm {} \e;"  .Dl "$ find . -name \e*.jpg -exec rm {} \e;"
   or
   .Dl "$ find . -name \e*.jpg | xargs rm"
 .Sh SEE ALSO  .Sh SEE ALSO
 .Xr chflags 1 ,  .Xr chflags 1 ,
 .Xr chmod 1 ,  .Xr chmod 1 ,

Legend:
Removed from v.1.62  
changed lines
  Added in v.1.63