grep在文件中查找字符并输出
grep 字符或字符串 文件目录 grep pub /teach/1.txt -c 字符出现总行数 grep public /teach/1.txt -n 行号 grep public /teach/1.txt -i 不区分大小写 grep -5 ‘parttern‘ inputfile //打印匹配行的前后5行 grep -C 5 ‘parttern‘ inputfile //打印匹配行的前后5行 grep -A 5 ‘parttern‘ inputfile //打印匹配行的后5行 grep -B 5 ‘parttern‘ inputfile //打印匹配行的前5行 grep public /teach/1.txt -v 输出除该字段以外的所有字符
原文:https://www.cnblogs.com/LQBlog/p/11776684.html