I'm trying to use the following regex in a sed script:
It doesn't work
sed -n '/\(www\.\)\?teste/p'
The regex above don't seem to work. Sed don't seem to apply the ? to the grouped www\..
It works if you use the -E parameter that switches Sed to use the Extended Regex, so the syntax becomes:
This works fine
sed -En '/(www\.)?teste/p'
But I want to run this script on a machine that don't support the -E operator. I'm pretty sure that this is possible and I'm doing something very stupid.
/. It was a copy paste problem. The space doesn't affect me, but I'm now following your suggestion. What I'm trying to do is match any string that contains the groupedwww\.or not. – Eduardo May 27 '11 at 18:32'?'on(..\)groupings. Also, I don't think escaping it as\?is helping. More helpfully, I hope, recall that you can have multi targets in one /regex/ , so try'/\(www\.\)teste|teste/p'. Good luck. – shellter May 27 '11 at 19:41