grep的简单使用
作者:互联网
grep 'word' filename.txt
grep在进行搜索时,以行为单位进行处理
grep -n 代表显示行号
grep -v 代表反选择
grep -i 忽略大小写
grep 't[ea]st' 搜索test或tast
grep '^goo' 搜索以goo开头的行
grep '[^g]oo' 搜索以存在oo 但是 oo前面不是g的行
$ 代表行结尾符号, cat -A 文件名称,这样就可以看到 $ 符号。linux和windows的换行符不同,linux的换行符是 $ ,windows的换行符是 ^M$
grep '^$' 代表空行
. 代表任意一个字符
* 代表 * 前面的字符有0ge或多个 ,在通配符中 *代表任意字符
.* 任意多个字符
[a-zA-Z0-9]
标签:oo,字符,代表,grep,简单,搜索,使用,换行符 来源: https://www.cnblogs.com/sinosecurity/p/16390779.html