<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
Linux系統中grep命令是一種強大的文字搜尋工具,它能使用正規表示式搜尋文字,並把匹 配的行列印出來。
grep全稱是Global Regular Expression Print,表示全域性正規表示式版本,它的使用許可權是所有使用者。
英文註解:
grep ['grep] 搜尋目標行命令· global [ˈgloʊbl] 全球的,球狀的 regular 美 [ˈrɛɡjəlɚ] 有規律的,規則的, 正規軍(n) expression 美 [ɪkˈsprɛʃən] 表達,表現,表情,臉色,態度
例句: It's enough to make you wet yourself, if you'll pardon the expression
linux支援三種形式的grep命令: grep , egrep ,grep -E
依據慣例,我們還是先檢視幫助,使用grep --help
[root@mufeng test]# grep --help 用法: grep [選項]... PATTERN [FILE]... 在每個 FILE 或是標準輸入中查詢 PATTERN。 預設的 PATTERN 是一個基本正規表示式(縮寫為 BRE)。 例如: grep -i 'hello world' menu.h main.c 正規表示式選擇與解釋: -E, --extended-regexp PATTERN 是一個可延伸的正規表示式(縮寫為 ERE) -F, --fixed-strings PATTERN 是一組由斷行符分隔的定長字串。 -G, --basic-regexp PATTERN 是一個基本正規表示式(縮寫為 BRE) -P, --perl-regexp PATTERN 是一個 Perl 正規表示式 -e, --regexp=PATTERN 用 PATTERN 來進行匹配操作 -f, --file=FILE 從 FILE 中取得 PATTERN -i, --ignore-case 忽略大小寫 -w, --word-regexp 強制 PATTERN 僅完全匹配字詞 -x, --line-regexp 強制 PATTERN 僅完全匹配一行 -z, --null-data 一個 0 位元組的資料行,但不是空行 Miscellaneous: -s, --no-messages suppress error messages -v, --invert-match select non-matching lines -V, --version display version information and exit --help display this help text and exit 輸出控制: -m, --max-count=NUM NUM 次匹配後停止 -b, --byte-offset 輸出的同時列印位元組偏移 -n, --line-number 輸出的同時列印行號 --line-buffered 每行輸出清空 -H, --with-filename 為每一匹配項列印檔名 -h, --no-filename 輸出時不顯示檔名字首 --label=LABEL 將LABEL 作為標準輸入檔名字首 -o, --only-matching show only the part of a line matching PATTERN -q, --quiet, --silent suppress all normal output --binary-files=TYPE assume that binary files are TYPE; TYPE is 'binary', 'text', or 'without-match' -a, --text equivalent to --binary-files=text -I equivalent to --binary-files=without-match -d, --directories=ACTION how to handle directories; ACTION is 'read', 'recurse', or 'skip' -D, --devices=ACTION how to handle devices, FIFOs and sockets; ACTION is 'read' or 'skip' -r, --recursive like --directories=recurse -R, --dereference-recursive likewise, but follow all symlinks --include=FILE_PATTERN search only files that match FILE_PATTERN --exclude=FILE_PATTERN skip files and directories matching FILE_PATTERN --exclude-from=FILE skip files matching any file pattern from FILE --exclude-dir=PATTERN directories that match PATTERN will be skipped. -L, --files-without-match print only names of FILEs containing no match -l, --files-with-matches print only names of FILEs containing matches -c, --count print only a count of matching lines per FILE -T, --initial-tab make tabs line up (if needed) -Z, --null print 0 byte after FILE name 檔案控制: -B, --before-context=NUM 列印以文字起始的NUM 行 -A, --after-context=NUM 列印以文字結尾的NUM 行 -C, --context=NUM 列印輸出文字NUM 行 -NUM same as --context=NUM --group-separator=SEP use SEP as a group separator --no-group-separator use empty string as a group separator --color[=WHEN], --colour[=WHEN] use markers to highlight the matching strings; WHEN is 'always', 'never', or 'auto' -U, --binary do not strip CR characters at EOL (MSDOS/Windows) -u, --unix-byte-offsets report offsets as if CRs were not there (MSDOS/Windows)
為了更直觀一些,我們把常用的引數用表格來展示:
引數 | 描述 |
---|---|
-i | 忽略大小寫 |
-E | 啟用POSTIX擴充套件正規表示式 |
-P | 啟用perl正則 |
-o | 只輸出正規表示式的匹配的內容 |
-w | 整字匹配 |
-v | 取反,也就是不匹配的 |
-n | 輸出行號 |
有了具體的引數之後,我們再來看實戰案例:
以root開頭的檔案,可以用 ^root 比如檢視/etc/passwd 中以root開頭的檔案,操作如下:
[root@mufenggrow ~]# grep ^root /etc/passwd root:x:0:0:root:/root:/bin/bash
搜某個單詞,我們直接在grep後面跟上單詞名字即可:
案例一: 搜尋/etc/passwd中的root使用者
[root@mufenggrow ~]# grep "root" /etc/passwd root:x:0:0:root:/root:/bin/bash operator:x:11:0:operator:/root:/sbin/nologin [root@mufenggrow ~]#
案例二: 從多個檔案中搜尋root
root@mufenggrow ~]# echo root >> a.txt [root@mufenggrow ~]# echo root >> b.txt [root@mufenggrow ~]# grep "root" /etc/passwd a.txt b.txt /etc/passwd:root:x:0:0:root:/root:/bin/bash /etc/passwd:operator:x:11:0:operator:/root:/sbin/nologin a.txt:root b.txt:root [root@mufenggrow ~]#
此處使用-v 引數,比如取反
案例一: 統計檔案的行數且不包含空行
空行的表示方法: ^$
[root@mufenggrow ~]# cp /etc/passwd ./ ## 原始檔一共35行 [root@mufenggrow ~]# cat /etc/passwd |wc -l 35 ## 追加空行進去 [root@mufenggrow ~]# echo "" >> /etc/passwd [root@mufenggrow ~]# cat /etc/passwd |wc -l 36 ## 去掉空行測試 [root@mufenggrow ~]# grep -v ^$ /etc/passwd |wc -l 35 [root@mufenggrow ~]#
有時候我們修改了組態檔,檔案中包含大量的# ,我們想去掉#檢視內容,就可以使用
[root@mufenggrow ~]# grep -v ^# passwd |wc -l 35
這裡可以使用 --color=auto,我們來檢視一下包含root的行,並高亮顯示要查詢的root。
[root@mufenggrow ~]# grep root /etc/passwd --color=auto root:x:0:0:root:/root:/bin/bash operator:x:11:0:operator:/root:/sbin/nologin [root@mufenggrow ~]#
這樣顯示,效果不明顯,我們看下圖:
可
以看到,所有的root都是紅色表示的。
比如我們要查詢root,但我不想顯示包含root的行,而是隻顯示要查詢的內容:
此時需要使用 -o 引數,程式碼如下
[root@mufenggrow ~]# grep -o root /etc/passwd root root root root
要注意,如果一行中有10個root,這裡就顯示10個,而不是隻顯示一個,所以3.4的案例中我們查詢的時候,包含root的有兩行,但有4個root,在3.5案例中,顯示了所有的root。
此處可以使用-n 引數, -n 會在一行的前面加上 行號: 比如“4:”
我們來看下程式碼範例:
[root@mufenggrow ~]# grep -n "root" passwd 1:root:x:0:0:root:/root:/bin/bash 11:operator:x:11:0:operator:/root:/sbin/nologin
我們要統計一個檔案一共有多少行,也可以使用-n 引數
root@mufenggrow ~]# grep -n "" passwd |awk -F : '{print $1}' |tail -n 1 35
此時可以用-c引數:
[root@mufenggrow ~]# grep -c "root" passwd 2
包含root的有兩行, 如果我們要統計文字的行數:
[root@mufenggrow ~]# grep -c "$" passwd 35
相當於查詢 $的行數,可以看到一共有35個$符號,也就是35行。
grep命令在日常工作中,應用的比較廣泛,一定要認真學習,記熟記牢常用引數。
到此這篇關於linux中grep命令使用實戰詳解的文章就介紹到這了,更多相關linux grep命令內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45