Does anyone happen to know why this:
echo "random text error: ‘the text I want’" | sed "s%.*error: ‘\(.*\)’%\1%"
works like a charm on Linux, but hangs on Mac OS X's implementation of sed. When I say hangs, I mean drops to the next line with no output, and waits.
I know the implementations are different, but cannot seems to find what the specific cause is. I can get Mac OS X's implementation of sed to do other things with smart quotes (such as replace them with "normal" ones).
For anyone who is interested, this is similar to compiler error output. GCC on Mac OS X also outputs smart quotes in its error messages.
echo "random text error: ‘the text I want’" | catand see if theechoon its own piped through a dumb program works okay, then tryecho foo | sed "s%.*error: ‘\(.*\)’%\1%"to see ifsedhandles the characters well. – sarnold Mar 8 '11 at 1:22