[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: BDB vs. FSFS

From: Ævar Arnfjörð Bjarmason <avarab_at_gmail.com>
Date: 2004-10-19 14:09:51 CEST

On Tue, 19 Oct 2004 12:33:15 +0100, Hakan Koseoglu
<hakan.koseoglu@pcmsgroup.com> wrote:
> > > $ find . -type d -exec rm -rf {} \;
> >
> > Aii, this is what happens when you don't read your own commands, what
> > i meant was of course:
> >
> > $ find . -type d -name '.svn' -exec rm -rf {} \;
>
> I find this method faster:
> find . -type d -name '.svn' | xargs rm -rf

Actually when you use pipes when there is no need you get slowdowns
generally, like
 $ cat foo | grep bar
instead of:
 $ grep bar foo
But this is fast getting offtopic;)

>
> --
> Hakan Koseoglu
>
> The views expressed in this e-mail may not necessarily be the views of
> The PCMS Group plc and should not be taken as authority to carry out any
> instruction contained.
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Oct 19 14:10:28 2004

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.