一.附加文本
使用a在指定行后面附加1行或多行;若不指定放置的位置,则默认放到每一行的后面。
附加文本时,不允许指定范围,只允许一个地址模式。
附加格式:
[address] a
text
text
...
text
注意:
1.a通知sed对a后面的内容进行附加操作。
2.每行后面都有"",当sed执行到时,将创建一个新行,并将内容添加进去。
3.最后一行不能有""。
例子:
如果将附加的第一行最后的""去掉,那么运行脚本将会报错。
pg append.sed
#!bin/sed -f
# append text
/company/ a
Then suddenly it happened.
_yeeXun.
执行之后:
sed -f append.sed quote.txt
sed: Unrecognized command: _yeeXun.
修改之后
pg append.sed
#!bin/sed -f
# append text
/company/ a
Then suddenly it happened.
_yeeXun.
执行脚本:
sed -f append.sed quote.txt
The honeysuckle band played all night long for noly $90.
It was an evening of splendid music and company.
Then suddenly it happened.
_yeeXun.
Too bad the disco floor fell through at 23:10.
The local nurse Miss P.Neave was in attendance.
因为sed不与原文件打交道,编辑的只是其一个拷贝,所以我们附加的数据不会写到文件中;
当执行上面的命令之后,我们查看下quote.txt文件:
pg quote.txt
The honeysuckle band played all night long for noly $90.
It was an evening of splendid music and company.
Too bad the disco floor fell through at 23:10.
The local nurse Miss P.Neave was in attendance.
二.修改文本
使用c修改指定行,格式:
[address[,address]] c
text
text
...
text
address:行位置,可以使用正则表达式定位,也可以直接指定行号。
text:为替换的文本,注意最后一行没有""。
例子
替换第三行数据:
pg change.sed
# change date
/bad/ c
[Two good.]
next goods.
运行脚本:
sed -f change.sed quote.txt
The honeysuckle band played all night long for noly $90.
It was an evening of splendid music and company.
[Two good.]
next goods.
The local nurse Miss P.Neave was in attendance.
Linux(CentOS) 下设置永久环境变量(export PATH)AIX下的sed介绍相关资讯 sed sed使用 sed的使用
- Linux 管理员都应该会的命令:sed (01月13日)
- Linux正则表达式sed 详述 (04/16/2015 15:19:04)
- shell中sed和awk的一些用法和例子 (02/03/2015 11:52:34)
| - sed 命令详解 (11/15/2015 10:16:53)
- sed一些参数的用法 (04/16/2015 15:05:09)
- sed命令详解与示例 (11/12/2014 19:21:48)
|
本文评论 查看全部评论 (0)