egrep

Linux egrep指令 語(yǔ)法

作用:egrep指令用於在檔案內(nèi)尋找指定的字串。

語(yǔ)法:egrep [範(fàn)本模式] [檔案或目錄](méi)

#

Linux egrep指令 範(fàn)例

顯示檔案中符合條件的字元。例如,尋找目前目錄下所有文件中包含字串"Linux"的文件,可以使用如下命令:

egrep Linux *

結(jié)果如下所示:

$ egrep Linux * #查找當(dāng)前目錄下包含字符串“Linux”的文件  
testfile:hello Linux! #以下五行為testfile 中包含Linux字符的行  
testfile:Linux is a free Unix-type operating system.  
testfile:This is a Linux testfile!  
testfile:Linux  
testfile:Linux  
testfile1:helLinux! 
#以下兩行為testfile1中含Linux字符的行  
testfile1:This a Linux testfile!  
#以下兩行為testfile_2 中包含Linux字符的行  
testfile_2:Linux is a free unix-type opterating system.  
testfile_2:Linux test  xx00:hello Linux! #xx00包含Linux字符的行  
xx01:Linux is a free Unix-type operating system. #以下三行為xx01包含Linux字符的行  
xx01:This is a Linux testfile!  
xx01:Linux