Subject: Re: CVS mirrors
To: Bill Squier <groo@old-ones.com>
From: Ignatios Souvatzis <is@beverly.kleinbus.org>
List: current-users
Date: 02/22/2001 21:23:16
On Thu, Feb 22, 2001 at 08:42:23PM +0100, Ignatios Souvatzis wrote:
> On Thu, Feb 22, 2001 at 11:23:50AM -0500, Bill Squier wrote:
> > echo anoncvs@my.mirror.com:/cvsroot > /tmp/newRoot
> > find /usr/src -name Root -exec cp /tmp/newRoot \{\} \;
> 
> find /usr/src -name Root -print | xargs -n1 cp /tmp/newRoot
> 
> (n-1 exec()s less)

Ok, its one exec() more.

You need a enhanced version, using tee. Implementation left as an exercise
to the reader.

	-is