码迷,mamicode.com
首页 > 其他好文 > 详细

sed

时间:2015-09-25 11:26:24      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:sed

a 追加内容 sed ‘/匹配词/a\要加入的内容’ example.file(将内容追加到匹配的目标行的下一行位置)
i 插入内容 sed ‘/匹配词/i\要加入的内容’ example.file 将内容插入到匹配的行目标的上一行位置)
示例:
#我要把文件的包含“chengyongxu.com”这个关键词的行前或行后加入一行,内容为“allow chengyongxu.cn”


#行前加

sed -i ‘/allow chengyongxu.com/i\allow chengyongxu.cn‘ the.conf.file

#行前后

sed -i ‘/allow chengyongxu.com/a\allow chengyongxu.cn‘ the.conf.file



1、删除指定行的上一行
sed -i -e :a -e ‘$!N;s/.*\n\(.*ServerName abc.com\)/\1/;ta‘ -e ‘P;D‘ $file
2、删除指定字符串之间的内容
sed -i ‘/ServerName abc.com/,/\/VirtualHost/d‘ $filehttp://www.linuxso.com/shell/17542.html


搜索‘REJECT‘内容,在此行最前面加注释

sed -i ‘/REJECT/s/^/#/‘ /etc/sysconfig/iptables

本文出自 “智能化未来_XFICC” 博客,请务必保留此出处http://xficc.blog.51cto.com/1189288/1698099

sed

标签:sed

原文地址:http://xficc.blog.51cto.com/1189288/1698099

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