背景:
阅读新闻
Linux sed常规用法小结
[日期:2012-02-19] 来源:Linux社区 作者:Linux [字体:]
2、打印含有元数据$行的行号
[root@localhost .shell]# sed -n '/\$/=' orig.txt 3 4 5 73、替换
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 $111b)把元数据$替换为¥
[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 ¥111c)-替换为空,并删除空行
[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 $111d)把含有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 -------------------------------- ******
基于Linux2.6.38.8内核zImage文件的自解压详解
相关资讯 Linux命令
本文评论 查看全部评论 (0)
尊重网上道德,遵守中华人民共和国的各项有关法律法规 承担一切因您的行为而直接或间接导致的民事或刑事法律责任 本站管理人员有权保留或删除其管辖留言中的任意内容 本站有权在网站内转载或引用您的评论 参与本评论即表明您已经阅读并接受上述条款
评论声明
最新资讯