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