Linux sed常规用法小结(2)

 

 

首页Linux教程

背景:

阅读新闻

Linux sed常规用法小结

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

2、打印含有元数据$行的行号

[root@localhost .shell]# sed -n '/\$/=' orig.txt             3   4   5   7  

3、替换

a)把-替换为空

[root@localhost .shell]# sed -e 's/-*//g'  orig.txt               id      name    price   address      1       apple   $50     USA   2       pear    $60     Canda   3       pen     $1      China      total   $111  

b)把元数据$替换为¥

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

c)-替换为空,并删除空行

[root@localhost .shell]# sed -e 's/-*//g'  -e '/^$/'d orig.txt    id      name    price   address   1       apple   $50     USA   2       pear    $60     Canda   3       pen     $1      China   total   $111  

d)把含有total的行,替换为******

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

 

Linux应用基础教程笔记总结

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

相关资讯       Linux命令 

   

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


评论声明

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

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

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

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

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

 

 

 

最新资讯

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

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