linux系统中sed命令整行替换
2021/7/9 7:05:46
本文主要是介绍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
…………
这篇关于linux系统中sed命令整行替换的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-18git仓库有更新,jenkins 自动触发拉代码怎么配置的?-icode9专业技术文章分享
- 2024-12-18Jenkins webhook 方式怎么配置指定的分支?-icode9专业技术文章分享
- 2024-12-13Linux C++项目实战入门教程
- 2024-12-13Linux C++编程项目实战入门教程
- 2024-12-11Linux部署Scrapy教程:新手入门指南
- 2024-12-11怎么将在本地创建的 Maven 仓库迁移到 Linux 服务器上?-icode9专业技术文章分享
- 2024-12-10Linux常用命令
- 2024-12-06谁看谁服! Linux 创始人对于进程和线程的理解是…
- 2024-12-04操作系统教程:新手入门及初级技巧详解
- 2024-12-04操作系统入门:新手必学指南