grep -E "c.+ features" test.txt
The above works great and is matching call features, etc. However, it is extended pattern.
How do I modify it to a simple pattern and know in general what exactly to escape?
I tried to escape \+ without success.
Escaping
+as\+should work:From the man pages: