一,grep命令
1.egrep 与grep -E 功能相似:
还有 grep -e:
使用awk实现:
2.grep定义:(global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并打印出匹配的行。
3.grep的 -n (输出行号)和 -c 选项(计数)
4.其他用法,参见这个链接:http://man.linuxde.net/grep