1、重要参数
-A # 除了显示匹配行外,还显示后x行(after)
-B # 除了显示匹配行外,还显示前x行(before)
-C # 除了显示匹配行外,还显示前x行、后x行
-n # 显示行号
-c # 显示匹配总数
-i # 不区分大小写
2、主要用法
cat file | grep "error" -inA 3
cat file | grep "error" -inB 3
cat file | grep "error" -inC 3
cat file | grep "error" -ic
3、实时过滤和查看日志
tail -f file | grep --line-buffered token
tailf file | grep --line-buffered token