That's great. I also saw in Unix Power Tools that you can use xargs to similar effect?
On Fri, Apr 18, 2008 at 10:55 AM, Martin Kraus <[EMAIL PROTECTED]> wrote: > On Fri, Apr 18, 2008 at 10:27:30AM -0600, ChadDavis wrote: > > I have a simple bash scripting question. > > > > I have a tree of directories from which I would like to recursively dig > > into, removing source control meta-information from. In this case, the > > meta-data is in .svn folders. > > > > Does anyone have any elegant suggestions on how to do this? > > find . -name .svn -exec rm -r {} \; > >