#154 RE anchors in grep
The ^ or carat represents the start of the line and the $ represents the end of the line.
If we want to query for words that end with “cord” we will use:
1 | grep 'cord$' / usr / share / dict / words |
Output:
1 | Concord |
2 | accord |
3 | concord |
4 | cord |
5 | discord |
6 | prerecord |
7 | record |
8 | whipcord |
If we want to list words that begin with “ante” from the dictionary file we will use:
1 | grep '^ante' / usr / share / dict / words |
1 | ante |
2 | ante's |
3 | anteater |
4 | anteater's |
5 | anteaters |
6 | antebellum |
7 | antecedent |
8 | antecedent's |
9 | antecedents |
10 | antechamber |
11 | antechamber's |
12 | antechambers |
13 | anted |
14 | antedate |
15 | antedated |
16 | antedates |
17 | antedating |
18 | antediluvian |
19 | anteed |
20 | anteing |
21 | antelope |
22 | antelope's |
23 | antelopes |
24 | antenna |
25 | antenna's |
26 | antennae |
27 | antennas |
28 | anterior |
29 | anteroom |
30 | anteroom's |
31 | anterooms |
32 | antes |
Recent Comments