码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 之 sed 与 find 命令结合使用

时间:2018-05-06 10:38:23      阅读:3332      评论:0      收藏:0      [点我收藏+]

标签:sed

sed 与 find 命令结合使用

目的:把/root/kang目录下,所有带有*.sh结尾的文件,并且内容oldboy的字符串,替换成kang

[root@localhost kang]# find /root/kang/ -type f -name "*.sh"|xargs 
/root/kang/nginx/abc.sh /root/kang/test.sh     #查出总共有两个文件
[root@localhost kang]# find /root/kang/ -type f -name "*.sh"|xargs cat    #查看文件内容
oldboy
oldboy
[root@localhost kang]# find /root/kang/ -type f -name "*.sh"|xargs sed   ‘s#oldboy#kang#g‘       #查找替换,并打印出来(原文件并没有更改)
kang
kang
[root@localhost kang]# find /root/kang/ -type f -name "*.sh"|xargs sed -i ‘s#oldboy#kang#g‘       #查找并替换原文件内容
[root@localhost kang]# find /root/kang/ -type f -name "*.sh"|xargs cat
kang
kang
[root@localhost kang]# 

Linux 之 sed 与 find 命令结合使用

标签:sed

原文地址:http://blog.51cto.com/12965094/2113144

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!