本文講講 Ubuntu 18 及以上版本配置 IP 的方法,為什麼它值得一講,因為以 Ubuntu 16 為首的版本的配置方法已經不適用了,如果你還不知道,那本文正好 get 一個新技能。 Ubuntu 18 之後版本配置方法 需要使用 netplan 工具。 對應配置文件: /etc/netpla ...
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/’