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 20:42:23
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)

Regards,
	-is