awk和sed實現匹配行內容和行號列印
sed列印所有匹配行行號 sed -n '/liu/=' aa
sed列印匹配內容 sed -n '/liu/p' aa
sed列印匹配內容和匹配行號 sed -n -e '/liu/=' -e '/liu/p' aa
sed列印最後一個匹配內容的一行 sed -n -e '/liu/=' -e '/liu/p' aa | tail -n1
重點語法:
sed中p 列印匹配行
= 列印匹配行號
-n 列印模式匹配的行
-e 命令列進行編輯
以下為實現的是匹配行到檔案末尾的內容列印,有不對的命令請指正一下
匹配行到檔案末尾:
num=`sed -n '/匹配內容/=' file | tail -n1` #得到匹配最後一行的行號,再使用以下命令列印 sed -n $num',$p' file
tac file | sed '/ccc/q' | tac
sed -n '/ccc/h;//!H;${g;p}' file
awk 'NR==FNR{if(/ccc/)p=FNR ;next} FNR>=p' file file
awk -vRS="" -vFS="ccc" '{print FS$NF}' urfile
awk '{s=s"\t"$0}END{gsub(".*ccc","ccc",s);gsub("\t","\n",s);print s}' aa
sed -z 's/.*\nccc\n/ccc\n/'
sed ':1;$q;N;/ccc/,$D;b1' file
不包含匹配行ccc
sed -n ':1;N;$!b1;s#.*\nccc#ccc#p' file
包含匹配行ccc
awk -vRS='ccc' 'END{print RS,$0}' urfile
sed -i "s/plumber/streamsets-datacollector-basic-lib/g" */*
grep -E "abc.*def|xyz"
tail -f nohup.out |awk '/sum|/'
tail /etc/services | awk '/warn/{a[$1]++}END{for(v in a)print a[v],v}'
tail -f ./nohup.out | awk '/warn/{print substr($4,1,2);total=total+$1;}'
tail -f ./nohup.out | awk '/warn/{a+=substr($4,1,2);b+=$a;print a}'
tail -f nohup.out | grep -v "md5"
tail -f nohup.out | grep -vE '(error|critical|warning)'
反向搜尋:grep -n 'something' file | tail -n 1
檔案中每一行前加時間:cat all.txt | while read line; do echo "[$(date "+%Y-%m-%d %H:%M:%S")] $line"; done