[imp] CVS Update

Omniflux joshlists@nebonet.com
Fri, 14 Sep 2001 16:10:42 -0600


Here is an updated version of Andy's script to do this.

#!/bin/sh

old="cvs.horde.org:/cvs/horde"
new="anoncvs.horde.org:/repository"

for i in `find . -name CVS -type d -print`
        do
        echo $i
        sed -e "s%$old%$new%" < $i/Root > $i/Root.new
        mv $i/Root $i/Root.old
        mv $i/Root.new $i/Root
done


-
Omniflux


-----Original Message-----
From: m.ibarra@cdcixis-na.com [mailto:m.ibarra@cdcixis-na.com]
Sent: Friday, September 14, 2001 09:20
To: imp@lists.horde.org
Subject: RE: [imp] CVS Update


Do not forget to change the direcory as well, it is
now /repository. What had me baffled is that I have
been using the new servername and dir since it was
first created.

-mi