Anchors:
^ Start-of-line anchor
$ End-of-line anchor
grep ^aa /usr/share/dict/words
words that start with an 'aa'grep aa$ /usr/share/dict/words
words that end with 'aa'grep aa /usr/share/dict/words
find all words with an 'aa' in it. Quantifiers:
? 0 or 1 occurrences of the preceding text
* 0 or N occurrences of the preceding text (N > 0)
+ 1 or N occurrences of the preceding text (N > 1)
Grouping:
(text) Grouping of text (used either to set the borders of an alternative as above, or to make backreferences, where the Nth group can be referred to on the RHS of a RewriteRule as $N)
{n} matches the preceding char appearing 'n'times
In its simplest form, when no regular expression type is given, grep interpret search patterns as basic regular expressions. To interpret the pattern as an extended regular expression, use the -E ( or --extended-regexp) option. (Or the egrep command)
In GNU’s implementation of grep there is no functional difference between the basic and extended regular expression syntaxes. The only difference is that in basic regular expressions the meta-characters ?, +, {, |, (, and ) are interpreted as literal characters. To keep the meta-characters’ special meanings when using basic regular expressions, the characters must be escaped with a backslash ().
Not too much difference, except:
basic must escape the previous explained chars
extended does not
Example: egrep 'some|tab' sample.txt
Example: grep 'some\|tab' sample.txt