grep
grep searches the named input FILEs (or standard input if no files are named, or if a single hyphen-minus (-) is given as file name) for lines containing a match to the given PATTERN. By default, grep prints the matching lines.
grep
:用於全面搜尋的正規表示式,並將結果輸出;
格式
:
- grep [OPTIONS] PATTERN [FILE...]
- grep [OPTIONS] [-e PATTERN | -f FILE] [FILE...]
egrep則是擴充套件搜尋命令,等價於“grep -E”命令,支援擴充套件的正規表示式。而fgrep則是快速搜尋命令,等價於“grep -F”命令,不支援正規表示式,直接按照字串內容進行匹配;
常用引數:
-i | 忽略大小寫 |
---|---|
-c | 只輸出匹配行的數量 |
-l | 只列出符合匹配的檔名,不列出具體的匹配行 |
-n | 列出所有的匹配行,顯示行號 |
-h | 查詢多檔案時不顯示檔名 |
-s | 不顯示不存在、沒有匹配文字的錯誤資訊 |
-v | 顯示不包含匹配文字的所有行 |
-w | 匹配整詞 |
-x | 匹配整行 |
-r | 遞迴搜尋 |
-q | 禁止輸出任何結果,已退出狀態表示搜尋是否成功 |
-b | 列印匹配行距檔案頭部的偏移量,以位元組為單位 |
-o | 與-b結合使用,列印匹配的詞據檔案頭部的偏移量,以位元組為單位 |
-F | 匹配固定字串的內容 |
-E | 支援擴充套件的正規表示式 |
參考案例:
- 在單個檔案中搜尋內容
$ grep "root" /etc/passwd
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
- 在多個檔案中搜尋內容
$ grep "root" /etc/passwd /etc/group
/etc/passwd:root:x:0:0:root:/root:/bin/bash
/etc/passwd:operator:x:11:0:operator:/root:/sbin/nologin
/etc/group:root:x:0:
- 在檔案中搜尋內容(不區分大小寫)
# 使用 -i 忽略大小寫
$ grep -i HAL /etc/passwd
halt:x:7:0:halt:/sbin:/sbin/halt
haldaemon:x:68:68:HAL daemon:/:/sbin/nologin
- 遞迴搜尋
# 遞迴搜尋使用 -i
# If you want to include symlinks use -R.
$ grep -r nginx /var
- 在管道中使用grep過濾
# ls -R / : 遞迴顯示ls
# grep backup: 輸出檔案命名中包含backup
# 單個grep
$ ls -R / |grep backup
# 多個grep
$ ps -ef | grep docker | grep apache
- 使用基礎正規表示式
# 搜尋以yum為開頭的行
$ grep "^yum" /opt/reposinstall.sh
yum clean all
yum makecache
yum install -y epel-release.noarch
yum clean all
yum makecache
yum repolist all
- 匹配完整詞
# -w : 使用引數-w匹配完整的詞
$ grep -iw "aliyun" /etc/yum.repos.d/CentOS-Base.repo
- 顯示匹配後的N行
# -A選項,在匹配的字串後顯示N行
$ grep -A 1 "root" /etc/passwd
- 顯示匹配前的N行
# -B選項,在匹配的字串前顯示N行
$ grep -B 1 "root" /etc/passwd
- 搜尋多個字串(使用 -E)
# -E : 使用正規表示式過濾內容
# -w : 匹配整個詞
$ ls | grep -w -E "a|reposinstall"
a.out
reposinstall.sh
- 搜尋多個字串(不使用 -E)
# 需要使用\轉義|
$ grep "yum\|aliyun\|bar" *.sh
- 排除特定的字元
# 使用-v選項忽略搜尋。下面的命令將在除“syslog.log”之外的所有檔案中搜尋字串“error”
$ grep -r error * | grep -v ‘/\syslog.log/’