_linux文本过滤grep基础命令介绍
在linux中經常需要對文本或輸出內容進行過濾,最常用的過濾命令是grep
grep [OPTIONS] PATTERN [FILE...]
grep按行檢索輸入的每一行,如果輸入行包含模式PATTERN,則輸出這一行。這里的PATTERN是正則表達式(參考前一篇,本文將結合grep一同舉例)。
輸出文件/etc/passwd中包含root的行:
[root@centos7 temp]# grep root /etc/passwdroot:x:0:0:root:/root:/bin/bashoperator:x:11:0:operator:/root:/sbin/nologin或者從標準輸入獲得:
[root@centos7 temp]# cat /etc/passwd | grep rootroot:x:0:0:root:/root:/bin/bashoperator:x:11:0:operator:/root:/sbin/nologin需要注意的地方是:當grep的輸入既來自文件也來自標準輸入時,grep將忽略標準輸入的內容不做處理,除非使用符號-來代表標準輸入:
[root@centos7 temp]# cat /etc/passwd | grep root /etc/passwd -/etc/passwd:root:x:0:0:root:/root:/bin/bash/etc/passwd:operator:x:11:0:operator:/root:/sbin/nologin(標準輸入):root:x:0:0:root:/root:/bin/bash(標準輸入):operator:x:11:0:operator:/root:/sbin/nologin此時,grep會標明哪些結果來自于文件哪些來自于標準輸入。
輸出文件/etc/passwd和文件/etc/group中以root開頭的行:
[root@centos7 temp]# grep "^root" /etc/passwd /etc/group/etc/passwd:root:x:0:0:root:/root:/bin/bash/etc/group:root:x:0:輸出文件/etc/passwd中以/bin/bash結尾的行:
[root@centos7 temp]# grep "/bin/bash$" /etc/passwdroot:x:0:0:root:/root:/bin/bashlearner:x:1000:1000::/home/learner:/bin/bash注意以上兩個例子中PATTERN被雙引號引用起來以防止被shell解析。
輸出文件/etc/passwd中不以a-s中任何一個字母開頭的行:
[root@centos7 temp]# grep "^[^a-s]" /etc/passwd tss:x:59:59:Account used by the trousers package to sandbox the tcsd daemon:/dev/null:/sbin/nologintcpdump:x:72:72::/:/sbin/nologin這里需要理解兩個^間不同的含義,第一個^表示行首,第二個在[]內部的首個字符^表示取反。
輸出文件/etc/passwd中字符0連續出現3次及以上的行(注意轉義字符''):
[root@centos7 temp]# grep "0{3,}" /etc/passwdlearner:x:1000:1000::/home/learner:/bin/bash如輸出文件/etc/passwd中以字符r或l開頭的行:
[root@centos7 temp]# grep "^[r,l]" /etc/passwdroot:x:0:0:root:/root:/bin/bashlp:x:4:7:lp:/var/spool/lpd:/sbin/nologinlearner:x:1000:1000::/home/learner:/bin/bash選項-i使grep在匹配模式時忽略大小寫:
t@centos7 temp]# grep -i abcd file ABCDfunction abcd() {[root@centos7 temp]#選項-o表示只輸出匹配的字符,而不是整行:
[root@centos7 temp]# grep -oi abcd file ABCDabcd[root@centos7 temp]#選項-c統計匹配的行數:
[root@centos7 temp]# grep -oic abcd file [root@centos7 temp]#選項-v表示取反匹配,如輸出/etc/passwd中不以/sbin/nologin結尾的行:
[root@centos7 temp]# grep -v "/sbin/nologin$" /etc/passwdroot:x:0:0:root:/root:/bin/bashsync:x:5:0:sync:/sbin:/bin/syncshutdown:x:6:0:shutdown:/sbin:/sbin/shutdownhalt:x:7:0:halt:/sbin:/sbin/haltlearner:x:1000:1000::/home/learner:/bin/bash選項-f FILE表示以文件FILE中的每一行作為模式匹配:
[root@centos7 temp]# cat testabcdABCD[root@centos7 temp]# grep -f test file ABCDfunction abcd() {[root@centos7 temp]#選項-x表示整行匹配:
[root@centos7 temp]# grep -xf test file ABCD[root@centos7 temp]#選項-w表示匹配整個單詞:
[root@centos7 temp]# grep here fileherethere[root@centos7 temp]# grep -w here filehere[root@centos7 temp]#選項-h表示當多個文件時不輸出文件名:
[root@centos7 temp]# cat /etc/passwd|grep ^root - /etc/passwd -hroot:x:0:0:root:/root:/bin/bashroot:x:0:0:root:/root:/bin/bash選項-n表示顯示行號:
[root@centos7 temp]# grep -n "^[r,l]" /etc/passwd1:root:x:0:0:root:/root:/bin/bash5:lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin24:learner:x:1000:1000::/home/learner:/bin/bash選項-A N、-B N、-C N表示輸出匹配行和其'周圍行'
-A N 表示輸出匹配行和其之后(after)的N行
-B N 表示輸出匹配行和其之前(before)的N行
-C N 表示輸出匹配行和其之前之后各N行
[root@centos7 temp]# grep -A 2 ^operator /etc/passwdoperator:x:11:0:operator:/root:/sbin/nologingames:x:12:100:games:/usr/games:/sbin/nologinftp:x:14:50:FTP User:/var/ftp:/sbin/nologin[root@centos7 temp]# grep -B2 ^operator /etc/passwd halt:x:7:0:halt:/sbin:/sbin/haltmail:x:8:12:mail:/var/spool/mail:/sbin/nologinoperator:x:11:0:operator:/root:/sbin/nologin[root@centos7 temp]# grep -C1 ^operator /etc/passwd mail:x:8:12:mail:/var/spool/mail:/sbin/nologinoperator:x:11:0:operator:/root:/sbin/nologingames:x:12:100:games:/usr/games:/sbin/nologin選項-F視PATTERN為它的字面意思匹配(忽略字符的特殊含義),等同于執行命令fgrep:
[root@centos7 temp]# grep -F ^root /etc/passwd[root@centos7 temp]#命令無輸出
選項-E可以使用擴展的正則表達式,如同執行egrep命令:
[root@centos7 temp]# egrep "^root|^learner" /etc/passwdroot:x:0:0:root:/root:/bin/bashlearner:x:1000:1000::/home/learner:/bin/bash使用擴展正則表達式意味著不需要轉義就能表示字符的特殊含義,包括?,+,{,|,(和)。
選項-P表示使用perl的正則表達式進行匹配
如:
[root@centos7 ~]# echo "helloworld123456"| grep -oP "d+"123456[root@centos7 ~]#perl正則中"d"表示數字,+表示匹配一到多次(同vim)。
選項-a將二進制文件當成文本文件處理:
[root@centos7 ~]# grep -a online /usr/bin/ls%s online help: [root@centos7 ~]#選項--exclude=GLOB和--include=GLOB分別表示排除和包含匹配GLOB的文件,GLOB表示通配符(find及xargs用法見基礎命令介紹三):[root@centos7 temp]# find . -type f | xargs grep --exclude=*.txt --include=test* bash./test.sh:#!/bin/bash[root@centos7 temp]#grep強大的過濾能力來自于各種選項以及正則表達式的配合,在今后的文章中還有更多的例子。
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
總結
以上是生活随笔為你收集整理的_linux文本过滤grep基础命令介绍的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 阿里开源的15个顶级Java项目!!!
- 下一篇: python求解多元方程最优解_Pyth