egrep
在文件内查找指定的字符串
补充说明:
egrep
命令用于在文件内查找指定的字符串。它执行的效果与grep -E
相似,使用的语法及参数可参照grep
指令。不同之处在于解读字符串的方法。egrep
使用的是extended regular expression
语法来解读,而grep
则使用的是basic regular expression
语法解读。extended regular expression
比basic regular expression
的表达更规范。
语法
代码语言:javascript复制egrep [选项] [查找模式] [文件名1,文件名2,……]
实例
显示文件中符合条件的字符。例如,查找当前目录下所有文件中包含字符串"Linux"的文件,可以使用如下命令:
代码语言:javascript复制egrep Linux *
结果如下所示:
代码语言:javascript复制# 以下五行为 testfile 中包含Linux字符的行
testfile:hello Linux!
testfile:Linux is a free Unix-type operating system.
testfile:This is a Linux testfile!
testfile:Linux
testfile:Linux
# 以下两行为testfile1中含Linux字符的行
testfile1:helLinux!
testfile1:This a Linux testfile!
# 以下两行为 testfile_2 中包含Linux字符的行
testfile_2:Linux is a free unix-type operating system
testfile_2:Linux test
过滤注释行和空白行
代码语言:javascript复制egrep -v '^s*(#|$)' filename
以上命令用于过滤掉文件中的注释行和空白行。