linux shell pattern,shell 三剑客之 sed pattern 详解

sed 基础介绍

32863748a1819b41cbf86217fd4dd50f.png

语法格式

linux shell pattern,shell 三剑客之 sed pattern 详解_第1张图片

sed 处理过程

linux shell pattern,shell 三剑客之 sed pattern 详解_第2张图片

sed 选项

linux shell pattern,shell 三剑客之 sed pattern 详解_第3张图片

cat sed.txt

a8db387e15c26d654da46d61b7bf3bf1.png

'-p' 打印输出 ,默认输出两次,流输出一次,源文件输出一次

sed 'p' sed.txt

linux shell pattern,shell 三剑客之 sed pattern 详解_第4张图片

-n  只显示处理的行,静默模式

sed -n 'p' sed.txt

4dd545e33dd39a1b599de94bc0aade32.png

sed '/python/p' sed.txt

linux shell pattern,shell 三剑客之 sed pattern 详解_第5张图片

sed -n '/python/p' sed.txt

dd49c861beaabce4eb92e682005fb309.png

通过文件引入规则进行流处理

cat edit.sed

64e43ad46cc2babb38b72523bacc24b0.png

引入一个文件中定义的规则

sed -n -f edit.sed sed.txt

8c1058d6431572fdd8b169def2a8321a.png

-r支持扩展正则表达式

sed -n -r '/python|PYTHON/p' sed.txt

df2d98a907abe4fac6865dc9f6d831ea.png

将love替换为like,源文件不修改

之所以没有输出信息,是因为没有加 p 选项

sed -n 's/love/like/g;p' sed.txt

修改后的结果输出

sed -n 's/love/like/g;p' sed.txt

linux shell pattern,shell 三剑客之 sed pattern 详解_第6张图片

将love替换为like,修改源文件

sed -i 's/love/like/g' sed.txt

ca46b00945d11759f7e95427d1a57a64.png

sed中的pattern详解

pattern 用法表

linux shell pattern,shell 三剑客之 sed pattern 详解_第7张图片

案例

显示指定的行, 打印file文件的第17行 (LineNumber )

sed -n "17p" file

指定起始行号和结束行号 (StartLine,EndLine )

sed -n "10,20p" file

指定起始行号,然后后面N行 (StartLine,+N   )

sed -n "10,+5p" file

正则表达式匹配的行 (/pattern1/ )

sed -n "/^root/p" file

从匹配到pattern1的行,到匹配到pattern2的行 (/pattern1/,/pattern2/)

sed -n "/^mail/,/^ftp/p" /etc/passwd

linux shell pattern,shell 三剑客之 sed pattern 详解_第8张图片

从指定行号开始匹配,直到匹配到pattern1的 (/LineNumber,/pattern1/)

#打印file文件中第4行开始匹配,直到以hdfs开头的行

sed -n "4,/^hdfs/p" file

从pattern1匹配的行开始,直到匹配到特定 (/pattern1/,LineNumber )

# 打印file文件中匹配root的行,直到第10行结束

sed -n "/root/,10p" file

打印5行并往后+3行

sed -n '5,+3p' /etc/passwd

39856cbc5e59906b9509c28dea57b604.png

查找bash的行

sed -n '/bash/p' /etc/passwd

eeb614b7142354ed1c0936e72a4850f0.png

查找/sbin/nologin的行

sed -n '/\/sbin\/nologin/p' /etc/passwd

linux shell pattern,shell 三剑客之 sed pattern 详解_第9张图片

正则匹配 , 打印以root开头的行

sed -n "/^root/p" /etc/passwd

8fc19c840db5eb3e3e7fcf2a8872eccc.png

查找root开头的行到 sync 开头的行结束

sed -n '/^root/,/^sync/p' /etc/passwd

linux shell pattern,shell 三剑客之 sed pattern 详解_第10张图片

查找root开头的行,到10行结束

sed -n '/root/,10p' /etc/passwd

linux shell pattern,shell 三剑客之 sed pattern 详解_第11张图片

你可能感兴趣的:(linux,shell,pattern)