欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

sed脚本学习笔记1

程序员文章站 2022-03-04 18:04:46
...

基础

sed -n 'n,m p' file.txt
sed [选项] '范围 操作' 对象
其中,
-n:表示--quiet或者--silent的意思,忽略执行过程的输出,只输出我们的结果即可。
n,m:表示从第n行到第m行
p:表示操作
file.txt:文件对象

示例

读取测试文件第一行内容
sed -n '1 p' test.txt

读取测试文件第二行到第10行的内容
sed -n '2,10 p' test.txt
sed -n '2,+8 p' test.txt

从测试文件第二行一直读到最后一行
sed -n '2,$ p' test.txt

从测试文件第二行开始,隔三行读取一行
sed -n '2~3 p' test.txt

根据正则表达式处理测试文件,从测试文件中读取匹配pattern1或pattern2的行
sed -n '/pattern1/,/pattern2/ p' test.txt

替换模式

sed -n '范围 s/string1/string2/g' test.txt

示例

将测试文件中的'_',':','|','/'替换为空格
sed  's/[_:/|]/ /g' test.txt 

误区澄清:关于正则表达式中多次重复匹配问题

错误写法
打印字符长度大于5的行数
sed -n -e '/.{5,}/ p' test.sh

正确写法
sed -n -e '/.\{5,\}/ p' test.txt
相关标签: sed