Chinaunix首页 | 论坛 | 博客
  • 博客访问: 52981
  • 博文数量: 32
  • 博客积分: 26
  • 博客等级: 民兵
  • 技术积分: 13
  • 用 户 组: 普通用户
  • 注册时间: 2011-04-01 23:00
文章分类

全部博文(32)

文章存档

2013年(32)

我的朋友

分类: LINUX

2013-11-20 09:42:40

原文地址:Sed在匹配行前后加入一行 作者:sun5411

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

1#行前加
2sed -i '/allow chengyongxu.com/i\allow chengyongxu.cn' the.conf.file
3#行前后
4sed -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' $file
阅读(2818) | 评论(0) | 转发(0) |
0

上一篇:ext2与ext3的区别

下一篇:shell 字符串截取

给主人留下些什么吧!~~