使用 grep -v 可以实现反向选择操作
grep -v
如:筛选出test.txt文本中不包含匹配内容的行
1、使用 grep -E 可以实现or操作(也可以写成egrep)
grep -E
如:筛选出test.txt文本中包含“a”或“b”的行
2、使用| 也可以实现or操作
|
用例:grep "a|b" test.txt
grep "a|b" test.txt