egrep

在文件內查找指定的字符串

補充說明

egrep命令 用於在文件內查找指定的字符串。egrep執行效果與grep -E相似,使用的語法及參數可參照grep指令,與grep的不同點在於解讀字符串的方法。egrep是用extended regular expression語法來解讀的,而grep則用basic regular expression 語法解讀,extended regular expression比basic regular expression的表達更規範。

語法

1egrep(選項)(查找模式)(文件名1,文件名2,……)

實例

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

1egrep Linux *

結果如下所示:

 1# 以下五行爲 testfile 中包含Linux字符的行
 2testfile:hello Linux!
 3testfile:Linux is a free Unix-type operating system.
 4testfile:This is a Linux testfile!
 5testfile:Linux
 6testfile:Linux
 7
 8# 以下兩行爲testfile1中含Linux字符的行
 9testfile1:helLinux!
10testfile1:This a Linux testfile!
11
12# 以下兩行爲 testfile_2 中包含Linux字符的行
13testfile_2:Linux is a free unix-type opterating system
14testfile_2:Linux test

過濾註釋行和空白行

1egrep -v '^\s*(#|$)' filename

來源:https://github.com/jaywcjlove/linux-command

最後修改於: Wednesday, January 31, 2024

相關文章:

翻譯: