网站地图    收藏   

主页 > 系统 > linux系统 >

sed替换文本中的内容 - Linux操作系统:Ubuntu_Cent

来源:自学PHP网    时间:2015-04-14 11:12 作者: 阅读:

[导读] sed替换文本中的内容linux 的shell是个很强大的东西。用sed命令可以很轻松的将文件中的东西替换成自己想要的内容。例如,有一个测试文件test,里面的xxx作为要替换的内容。hello world!t...

sed替换文本中的内容
 
linux 的shell是个很强大的东西。
 
用sed命令可以很轻松的将文件中的东西替换成自己想要的内容。 
 
例如,有一个测试文件test,里面的xxx作为要替换的内容。
 
hello world!
this is a document that used to test sed!
here i have a simbol xxx, the simbol xxx is a location used to be replaced.
 
把上面文件中的xxx替换成昨天的日期
 
sed -e "s/xxx/`date -d "1 day ago" +%Y%m%d`/g" > testsedresult
 
结果就为
 
hello world!
this is a document that used to test sed!
here i have a simbol 20130825, the simbol 20130825 is a location used to be replaced.
 
sed 后面跟的字符串 "s/ 源内容/ 目标内容 /g" 表示替换的内容,还可以用正则表达式来匹配源内容
 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论