grep命令几种用法
2019 年 12 月 19 日
没有评论
1. grep -i “abc” demo.log 搜索出含有”abc”字符串(-i:不区分大小)
2. grep -i -n “abc” demo.log 搜索出含有”abc”字符串(-i:不区分大小,-n:并打印行号)
3. grep -i -n –color “abc” demo.log 搜索出含有”abc”字符串(-i:不区分大小)-n:并打印行号,关键字”abc”颜色标记
4. grep -I -c “abc” demo.log 打印”abc”字符串(不区分大小写)显示的次数
5. grep -I -o “abc” demo.log 打印”abc”字符串(不区分大小写)但不打印整行
6. grep -A5 “abc” demo.tlog 打印”abc”字符串和它上5行的信息
7. grep -B5 “abc” demo.log 打印”abc”字符串和它下5行的信息
8. grep -C5 “abc” demo.log 打印”abc”字符串和它上5行和下5行的信息
9. grep -w “abc” demo.log 精确匹配出”abc”字符串的
10. grep -v “abc” demo.log 匹配出不包含”abc”字符串的行
11. grep -e “abc” -e “def” demo.log 同时匹配”abc”和”def”字符串