> > So my guess is that you don't run GNU sed.  I don't know too well what
> > to do wrt this issue.
> 
> Every DOS utility I have is GNU, including sed.

Ahh, I found the problem, but I don't as yet have a solution:

bash-2.04$ echo "one too three four" | sed "s|\btoo\b|two"
one too three four

bash-2.04$ echo "one too three four" | gsed "s|\btoo\b|two"
one two three four

sed is linked with DJGPP's regex library and gsed is linked with the GNU 
regex library.

Reply via email to