
15 May
2006
15 May
'06
2:53 p.m.
Caleb Epstein wrote:
On 5/15/06, David Abrahams <dave@boost-consulting.com> wrote:
If you have Unix tools available, the following at the root of your working copy will reset the server identity:
find /projects/boost-cvs -name Root -exec sed -i -e \ s/cvs[.]s.*[.]net/boost.cvs.sourceforge.net/ \{} \;
and this is the formula for the sandbox
find /projects/boost-cvs -name Root -exec sed -i -e \ s/cvs[.]s.*[.]net/boost-sandbox.cvs.sourceforge.net/ \{} \;
On at least one shell (zsh), both of the curly braces need escaping. Try using "\{\}" instead of "\{}" if your shell barfs on Dave's commands above.
for file in $( find ... ); do ... avoids evil braces