Linux之grep中的正規表示式

roc_guo發表於2020-12-24

grep 是 中用於處理檔案的工具之一。grep搜尋輸入檔案,查詢與正規表示式匹配的行,並將每個匹配的行標準輸出。

正規表示式是匹配一組字串的模式。模式由運算子、構造文字字元和具有特殊意義的元字元組成。grep支援三種正規表示式語法:Basic、Extended和perl相容。

如果沒有提供正規表示式型別,grep將搜尋模式解釋為基本的正規表示式。要將模式解釋為擴充套件的正規表示式,請使用-E。

文字匹配

grep 最基本的用法是搜尋檔案中的文字字元或字元序列。例如,要顯示/etc/passwd檔案中包含字串“bash”的所有行,需要執行以下 :

[root@localhost ~]# grep bash /etc/passwd

root:x:0:0:root:/root:/bin/bash

bob:x:1000:1001::/home/bob:/bin/bash

user01:x:1001:1002::/home/user01:/bin/bash


預設情況下,grep命令是區分大小寫的。這意味著大寫和小寫字元被視為不同的。要在搜尋時忽略大小寫,請使用 -i 選項。

如果搜尋字串包含空格,則需要用單引號或雙引號將其括起:

[root@localhost ~]# grep "System message bus" /etc/passwd

dbus:x:81:81:System message bus:/:/sbin/nologin

錨點

^ 符號匹配行首的空字串。在下面的示例中,字串“root”只有在行首出現時才匹配。

[root@localhost ~]# grep '^root' /etc/passwd

root:x:0:0:root:/root:/bin/bash


$ 要查詢以字串“bash”結尾的行,可以使用以下命令:

[root@localhost ~]# grep 'bash$' /etc/passwd

root:x:0:0:root:/root:/bin/bash

bob:x:1000:1001::/home/bob:/bin/bash

user01:x:1001:1002::/home/user01:/bin/bash


您還可以使用兩個錨來構造正規表示式。例如,檢視配置檔案,不顯示空行,請執行以下命令:

[root@localhost ~]# grep -v '^$' /etc/samba/smb.conf


-v   反轉匹配的意義,來選擇不匹配的行。

| 符號

|   是或者的意思。例如:想檢視cpu是否支援虛擬化:

[root@localhost ~]# grep 'vmx\|svm' /proc/cpuinfo

flags            : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon nopl xtopology tsc_reliable nonstop_tsc eagerfpu pni pclmulqdq vmx ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch ssbd ibrs ibpb stibp tpr_shadow vnmi ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 invpcid mpx rdseed adx smap clflushopt xsaveopt xsavec arat md_clear spec_ctrl intel_stibp flush_l1d arch_capabilities


如果使用擴充套件正規表示式,則不需要轉義 | ,如下所示:

[root@localhost ~]# grep -E 'svm|vmx' /proc/cpuinfo

flags            : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon nopl xtopology tsc_reliable nonstop_tsc eagerfpu pni pclmulqdq vmx ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch ssbd ibrs ibpb stibp tpr_shadow vnmi ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 invpcid mpx rdseed adx smap clflushopt xsaveopt xsavec arat md_clear spec_ctrl intel_stibp flush_l1d arch_capabilities

總結

正規表示式用於文字編輯器、程式語言和命令列工具,如grep、sed和awk。在搜尋文字檔案、編寫 或過濾命令輸出時,瞭解如何構造正規表示式非常有用。

 

原文來自:

原文連結:


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69901823/viewspace-2744847/,如需轉載,請註明出處,否則將追究法律責任。

相關文章