Boost logo

Boost :

From: Neal Becker (ndbecker2_at_[hidden])
Date: 2006-05-15 10:53:20


Caleb Epstein wrote:

> On 5/15/06, David Abrahams <dave_at_[hidden]> 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


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk