Whether to escape ( and ) in regex using GNU sed

grok12 picture grok12 · Jun 17, 2011 · Viewed 25.4k times · Source

I've noticed several posts on this site which say that with gnu sed you should use ( and ) in regex rather than \( and \). But then I looked in the gnu sed manual and saw that they specify that \( and \) must be used. What's up?

Answer

murgatroid99 picture murgatroid99 · Jun 17, 2011

This part of the gnu sed manual you linked to explains that whether you should escape parentheses depends on whether you are using basic regular expressions or extended regular expressions. This part says that the -r flag determines what mode you are in.

Edit: as stated in grok12's comment, the -E flag in bsd sed does what the -r flag does in gnu sed.