微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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、将第2行替换为xxxx

[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 '2c xxxx' a.txt
3 4 5
xxxx
s g 8
k s g
2 5 d
s c w
a r t
e 4 s

 

3、将2-5行替换为xxxx

[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 '2,5c xxxx' a.txt
3 4 5
xxxx
s c w
a r t
e 4 s

 

4、将第2行和第5行替换为xxxx

[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 -e '2c xxxx' -e '5c xxxx' a.txt
3 4 5
xxxx
s g 8
k s g
xxxx
s c w
a r t
e 4 s

 

5、将奇数行替换为xxxx

[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 '1~2c xxxx' a.txt
xxxx
d g 3
xxxx
k s g
xxxx
s c w
xxxx
e 4 s

 

正则表达式:……

[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 '/^s/c xxxx' a.txt
3 4 5
d g 3
xxxx
k s g
2 5 d
xxxx
a r t
e 4 s

…………

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。