1.1 KiB
1.1 KiB
部分概念
- 元字符:在正则表达式中具有特殊意义的字符,如星号(*)、问号(?)和点(.)
- 前导字符:位于元字符前边的第一个字符
其他常用元字符
me@me-EQ59:~/shell_demo$ cat hello_grep.txt
hello world
hello hello
me@me-EQ59:~/shell_demo$ grep '\<hel' hello_grep.txt
hello world
hello hello
me@me-EQ59:~/shell_demo$ grep 'lo\>' hello_grep.txt
hello world
hello hello
me@me-EQ59:~/shell_demo$
me@me-EQ59:~/shell_demo$ grep '\d' hello_grep.txt
hello world
me@me-EQ59:~/shell_demo$ grep -P '\d' hello_grep.txt
10.1.1.1
me@me-EQ59:~/shell_demo$ cat hello_grep.txt
hello world
hello hello
10.1.1.1
me@me-EQ59:~/shell_demo$