grep打印匹配前后信息 Feb 26, 2020 grep -5 'pattern' inputfile // 打印匹配的前后5行 grep -A 5 'pattern' inputfile //后5行 grep -B 5 'pattern' inputfile //前5行