Grep Regular Expressions

From NovaOrdis Knowledge Base
Revision as of 22:32, 29 July 2017 by Ovidiu (talk | contribs)
Jump to navigation Jump to search

Internal

Overview

^ - beginning of line

$ - end of line

\t - tab

digits: [0-9]* \d*

\. dot

Characters that need and do not need escaping:

sed: Special Characters (need to be escaped in regular expressions)
sed: Non-Special Characters (do not need escaping in regular expressions)

Regular Expression Syntax