系统相关
首页 > 系统相关> > linux系统中sed命令删除指定行及其后的若干行

linux系统中sed命令删除指定行及其后的若干行

作者:互联网

1、测试数据

[root@centos79 test]# cat a.txt
3 4 5
d g 3
s g 8
k s g
2 5 d
s c w
a r t
e 4 s

 

2、删除匹配k的行及其后2行

[root@centos79 test]# cat a.txt
3 4 5
d g 3
s g 8
k s g
2 5 d
s c w
a r t
e 4 s
[root@centos79 test]# sed '/k/,+2d' a.txt
3 4 5
d g 3
s g 8
a r t
e 4 s

 

3、删除以d开头的行及其后3行

[root@centos79 test]# cat a.txt
3 4 5
d g 3
s g 8
k s g
2 5 d
s c w
a r t
e 4 s
[root@centos79 test]# sed '/^d/,+3d' a.txt
3 4 5
s c w
a r t
e 4 s

 

标签:删除,cat,sed,centos79,linux,test,txt,root
来源: https://www.cnblogs.com/liujiaxin2018/p/14988789.html