背景:
阅读新闻
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 $1115、添加
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 $111c)在含有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
基于Linux2.6.38.8内核zImage文件的自解压详解
相关资讯 Linux命令
本文评论 查看全部评论 (0)
尊重网上道德,遵守中华人民共和国的各项有关法律法规 承担一切因您的行为而直接或间接导致的民事或刑事法律责任 本站管理人员有权保留或删除其管辖留言中的任意内容 本站有权在网站内转载或引用您的评论 参与本评论即表明您已经阅读并接受上述条款
评论声明
最新资讯