91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在linux中使用grep命令

發布時間:2021-03-15 16:43:15 來源:億速云 閱讀:130 作者:Leah 欄目:系統運維

如何在linux中使用grep命令?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

1.命令格式:

grep [option] pattern file

2.命令功能:
用于過濾/搜索的特定字符。可使用正則表達式能多種命令配合使用,使用上十分靈活。

3.命令參數:
-a   --text   #不要忽略二進制的數據。  
-A<顯示行數>   --after-context=<顯示行數>   #除了顯示符合范本樣式的那一列之外,并顯示該行之后的內容。  
-b   --byte-offset   #在顯示符合樣式的那一行之前,標示出該行第一個字符的編號。  
-B<顯示行數>   --before-context=<顯示行數>   #除了顯示符合樣式的那一行之外,并顯示該行之前的內容。  
-c    --count   #計算符合樣式的列數。  
-C<顯示行數>    --context=<顯示行數>或-<顯示行數>   #除了顯示符合樣式的那一行之外,并顯示該行之前后的內容。  
-d <動作>      --directories=<動作>   #當指定要查找的是目錄而非文件時,必須使用這項參數,否則grep指令將回報信息并停止動作。  
-e<范本樣式>  --regexp=<范本樣式>   #指定字符串做為查找文件內容的樣式。  
-E      --extended-regexp   #將樣式為延伸的普通表示法來使用。  
-f<規則文件>  --file=<規則文件>   #指定規則文件,其內容含有一個或多個規則樣式,讓grep查找符合規則條件的文件內容,格式為每行一個規則樣式。  
-F   --fixed-regexp   #將樣式視為固定字符串的列表。  
-G   --basic-regexp   #將樣式視為普通的表示法來使用。  
-h   --no-filename   #在顯示符合樣式的那一行之前,不標示該行所屬的文件名稱。  
-H   --with-filename   #在顯示符合樣式的那一行之前,表示該行所屬的文件名稱。  
-i    --ignore-case   #忽略字符大小寫的差別。  
-l    --file-with-matches   #列出文件內容符合指定的樣式的文件名稱。  
-L   --files-without-match   #列出文件內容不符合指定的樣式的文件名稱。  
-n   --line-number   #在顯示符合樣式的那一行之前,標示出該行的列數編號。  
-q   --quiet或--silent   #不顯示任何信息。  
-r   --recursive   #此參數的效果和指定“-d recurse”參數相同。  
-s   --no-messages   #不顯示錯誤信息。  
-v   --revert-match   #顯示不包含匹配文本的所有行。  
-V   --version   #顯示版本信息。  
-w   --word-regexp   #只顯示全字符合的列。  
-x    --line-regexp   #只顯示全列符合的列。  
-y   #此參數的效果和指定“-i”參數相同。
 
4.規則表達式:
grep的規則表達式:
^  #錨定行的開始 如:'^grep'匹配所有以grep開頭的行。   
$  #錨定行的結束 如:'grep$'匹配所有以grep結尾的行。   
.  #匹配一個非換行符的字符 如:'gr.p'匹配gr后接一個任意字符,然后是p。   
*  #匹配零個或多個先前字符 如:'*grep'匹配所有一個或多個空格后緊跟grep的行。   
.*   #一起用代表任意字符。  
[]   #匹配一個指定范圍內的字符,如'[Gg]rep'匹配Grep和grep。   
[^]  #匹配一個不在指定范圍內的字符,如:'[^A-FH-Z]rep'匹配不包含A-R和T-Z的一個字母開頭,緊跟rep的行。   
\(..\)  #標記匹配字符,如'\(love\)',love被標記為1。   
\<      #錨定單詞的開始,如:'\<grep'匹配包含以grep開頭的單詞的行。   
\>      #錨定單詞的結束,如'grep\>'匹配包含以grep結尾的單詞的行。   
x\{m\}  #重復字符x,m次,如:'0\{5\}'匹配包含5個o的行。   
x\{m,\}  #重復字符x,至少m次,如:'o\{5,\}'匹配至少有5個o的行。   
x\{m,n\}  #重復字符x,至少m次,不多于n次,如:'o\{5,10\}'匹配5--10個o的行。  
\w    #匹配文字和數字字符,也就是[A-Za-z0-9],如:'G\w*p'匹配以G后跟零個或多個文字或數字字符,然后是p。  
\W    #\w的反置形式,匹配一個或多個非單詞字符,如點號句號等。  
\b    #單詞鎖定符,如: '\bgrep\b'只匹配grep。 
POSIX字符:
為了在不同國家的字符編碼中保持一至,POSIX(The Portable Operating System Interface)增加了特殊的字符類,如[:alnum:]是[A-Za-z0-9]的另一個寫法。要把它們放到[]號內才能成為正則表達式,如[A- Za-z0-9]或[[:alnum:]]。在linux下的grep除fgrep外,都支持POSIX的字符類。
[:alnum:]    #文字數字字符  
[:alpha:]    #文字字符  
[:digit:]    #數字字符  
[:graph:]    #非空字符(非空格、控制字符)  
[:lower:]    #小寫字符  
[:cntrl:]    #控制字符  
[:print:]    #非空字符(包括空格)  
[:punct:]    #標點符號  
[:space:]    #所有空白字符(新行,空格,制表符)  
[:upper:]    #大寫字符  
[:xdigit:]   #十六進制數字(0-9,a-f,A-F) 

5.使用實例:
實例1:查找指定進程
命令:ps -ef|grep svn
輸出:

代碼如下:


[root@localhost ~]# ps -ef|grep svn
root 4943   1      0  Dec05 ?   00:00:00 svnserve -d -r /opt/svndata/grape/
root 16867 16838  0 19:53 pts/0    00:00:00 grep svn
[root@localhost ~]#


說明:第一條記錄是查找出的進程;第二條結果是grep進程本身,并非真正要找的進程。

實例2:查找指定進程個數
命令:

代碼如下:


ps -ef|grep svn -c
ps -ef|grep -c svn


輸出:

代碼如下:


[root@localhost ~]# ps -ef|grep svn -c
2
[root@localhost ~]# ps -ef|grep -c svn
2
[root@localhost ~]#

實例3:從文件中讀取關鍵詞進行搜索
命令:cat test.txt | grep -f test2.txt
輸出:

代碼如下:


[root@localhost test]# cat test.txt
hnlinux
peida.cnblogs.com
ubuntu
ubuntu linux
redhat
Redhat
linuxmint
[root@localhost test]# cat test2.txt
linux
Redhat
[root@localhost test]# cat test.txt | grep -f test2.txt
hnlinux
ubuntu linux
Redhat
linuxmint
[root@localhost test]#


說明:
輸出test.txt文件中含有從test2.txt文件中讀取出的關鍵詞的內容行

實例3:從文件中讀取關鍵詞進行搜索 且顯示行號
命令:cat test.txt | grep -nf test2.txt
輸出:

代碼如下:


[root@localhost test]# cat test.txt
hnlinux
peida.cnblogs.com
ubuntu
ubuntu linux
redhat
Redhat
linuxmint
[root@localhost test]# cat test2.txt
linux
Redhat
[root@localhost test]# cat test.txt | grep -nf test2.txt
1:hnlinux
4:ubuntu linux
6:Redhat
7:linuxmint
[root@localhost test]#


說明:
輸出test.txt文件中含有從test2.txt文件中讀取出的關鍵詞的內容行,并顯示每一行的行號

實例5:從文件中查找關鍵詞
命令:grep 'linux' test.txt
輸出:

代碼如下:


[root@localhost test]# grep 'linux' test.txt
hnlinux
ubuntu linux
linuxmint
[root@localhost test]# grep -n 'linux' test.txt
1:hnlinux
4:ubuntu linux
7:linuxmint
[root@localhost test]#

實例6:從多個文件中查找關鍵詞
命令:grep 'linux' test.txt test2.txt
輸出:

代碼如下:


[root@localhost test]# grep -n 'linux' test.txt test2.txt
test.txt:1:hnlinux
test.txt:4:ubuntu linux
test.txt:7:linuxmint
test2.txt:1:linux
[root@localhost test]# grep 'linux' test.txt test2.txt
test.txt:hnlinux
test.txt:ubuntu linux
test.txt:linuxmint
test2.txt:linux
[root@localhost test]#


說明:多文件時,輸出查詢到的信息內容行時,會把文件的命名在行最前面輸出并且加上":"作為標示符

實例7:grep不顯示本身進程
命令:

代碼如下:


ps aux|grep \[s]sh
ps aux | grep ssh | grep -v "grep"


輸出:

代碼如下:


[root@localhost test]# ps aux|grep ssh
root   2720  0.0  0.0  62656  1212 ?      Ss   Nov02   0:00 /usr/sbin/sshd
root  16834  0.0  0.0  88088  3288 ?      Ss   19:53   0:00 sshd: <a href="mailto:root@pts/0">root@pts/0</a>
root  16901  0.0  0.0  61180   764 pts/0  S+   20:31   0:00 grep ssh
[root@localhost test]# ps aux|grep \[s]sh]
[root@localhost test]# ps aux|grep \[s]sh
root   2720  0.0  0.0  62656  1212 ?      Ss   Nov02   0:00 /usr/sbin/sshd
root  16834  0.0  0.0  88088  3288 ?      Ss   19:53   0:00 sshd: <a href="mailto:root@pts/0">root@pts/0</a>
[root@localhost test]# ps aux | grep ssh | grep -v "grep"
root   2720  0.0  0.0  62656  1212 ?      Ss   Nov02   0:00 /usr/sbin/sshd
root  16834  0.0  0.0  88088  3288 ?      Ss   19:53   0:00 sshd: <a href="mailto:root@pts/0">root@pts/0</a>

實例8:找出已u開頭的行內容
命令:cat test.txt |grep ^u
輸出:

代碼如下:


[root@localhost test]# cat test.txt |grep ^u
ubuntu
ubuntu linux
[root@localhost test]#

實例9:輸出非u開頭的行內容
命令:cat test.txt |grep ^[^u]
輸出:

代碼如下:


[root@localhost test]# cat test.txt |grep ^[^u]
hnlinux
peida.cnblogs.com
redhat
Redhat
linuxmint
[root@localhost test]#

實例10:輸出以hat結尾的行內容
命令:cat test.txt |grep hat$
輸出:

代碼如下:


[root@localhost test]# cat test.txt |grep hat$
redhat
Redhat
[root@localhost test]#

實例11:
命令: ifconfig eth0|grep "[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}"
輸出:

[root@localhost test]# ifconfig eth0|grep "[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}"
          inet addr:192.168.120.204  Bcast:192.168.120.255  Mask:255.255.255.0
[root@localhost test]# ifconfig eth0|grep -E "([0-9]{1,3}\.){3}[0-9]"
          inet addr:192.168.120.204  Bcast:192.168.120.255  Mask:255.255.255.0
[root@localhost test]#

實例12:顯示包含ed或者at字符的內容行
命令:cat test.txt |grep -E "ed|at"
輸出:

[root@localhost test]# cat test.txt |grep -E "peida|com"
peida.cnblogs.com
[root@localhost test]# cat test.txt |grep -E "ed|at"
redhat
Redhat
[root@localhost test]#

實例13:顯示當前目錄下面以.txt 結尾的文件中的所有包含每個字符串至少有7個連續小寫字符的字符串的行
命令:grep '[a-z]\{7\}' *.txt
輸出:

[root@localhost test]# grep '[a-z]\{7\}' *.txt
test.txt:hnlinux
test.txt:peida.cnblogs.com
test.txt:linuxmint
[root@localhost test]#

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

吴川市| 杭州市| 延津县| 武胜县| 改则县| 淳化县| 济南市| 柳河县| 元江| 奉新县| 轮台县| 马鞍山市| 阿图什市| 如东县| 澄迈县| 古丈县| 中超| 无棣县| 长岭县| 荥阳市| 玉溪市| 尖扎县| 浑源县| 务川| 永吉县| 北票市| 张家川| 邓州市| 甘谷县| 鸡东县| 宜兰县| 兴山县| 香河县| 临沂市| 东乡| 孙吴县| 临夏县| 兴化市| 扶绥县| 和顺县| 新田县|