Linux sed常规用法小结(3)

 

 

首页Linux教程

背景:

阅读新闻

Linux sed常规用法小结

[日期:2012-02-19]   来源:Linux社区  作者:Linux   [字体:]  

4、删除,删除前两行

[root@localhost .shell]# sed '1,2d' orig.txt    1       apple   $50     USA   2       pear    $60     Canda   3       pen     $1      China   --------------------------------   total   $111  

5、添加

a)在含有apple的行前插入一行 0       nothing   $5     USA

[root@localhost .shell]# sed '/apple/i\0       nothing   $5     USA' orig.txt     id      name    price   address   -------------------------------   0       nothing   $5     USA   1       apple   $50     USA   2       pear    $60     Canda   3       pen     $1      China   --------------------------------  

b)在含有pen的行后插入一行4       four   $5     USA

[root@localhost .shell]# sed '/pen/a\4       four   $5     USA' orig.txt                  id      name    price   address   -------------------------------   1       apple   $50     USA   2       pear    $60     Canda   3       pen     $1      China   4       four   $5     USA   --------------------------------   total   $111  

c)在含有pen的行后面追加append.txt 文件的内容

[root@localhost .shell]# sed '/pen/r append.txt' orig.txt    id      name    price   address   -------------------------------   1       apple   $50     USA   2       pear    $60     Canda   3       pen     $1      China   4       apple   $50     USA   5       $60     Canda   6       pen     $1      China   --------------------------------   total   $111  

 

Linux应用基础教程笔记总结

基于Linux2.6.38.8内核zImage文件的自解压详解

相关资讯       Linux命令 

   

本文评论   查看全部评论 (0)


评论声明

尊重网上道德,遵守中华人民共和国的各项有关法律法规

承担一切因您的行为而直接或间接导致的民事或刑事法律责任

本站管理人员有权保留或删除其管辖留言中的任意内容

本站有权在网站内转载或引用您的评论

参与本评论即表明您已经阅读并接受上述条款

 

 

 

最新资讯

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/22527.html