码迷,mamicode.com
首页 > 其他好文 > 详细

sed基础语法

时间:2019-05-19 10:18:10      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:替换   pen   hello   表达   定位   输入   command   comm   制表符   

sed [-nefr] [n1,n2]

sed [-nefri] ‘command’ 输入文本 command有:
//a :append,追加新行
//c :cover,覆盖指定的行
//d :delete,删除区间行
//i  :insert,在指定行前面插入一行,同a相反
//p :print,和-n配合
//s  :substitute,取代

 

追加 a
$>sed 1ahelloworld test.txt
$>sed 1a\ helloworld test.txt         //空格
$>sed 1a\\thelloworld test.txt     //制表符
$>sed 1,3ahow test.txt

 

删除 d
$>sed 1d test.txt    //删除第一行
$>sed $d test.txt    //删除最后行
$>sed 1,$d test.txt    //删除第一行到最后一行
$>sed 1,3d test.txt    //删除第1,2,3行

 

覆盖 cover
$>sed 1,2chelloworld test.txt//前两行替换

 

显示  p   print
$>sed 1p test.txt    //显示第一行
$>sed $p test.txt    //显示最后行
$>sed 1,$p test.txt    //
$>sed -n 1,$p test.txt/ /n安静模式,只显式处理的行
$>sed /main/p test.txt//显示有main的行

 

插入 i
$>sed 1ihelloworld test.txt
$>sed 1i\ helloworld test.txt//空格
$>sed 1i\\thelloworld test.txt//制表符
$>sed 1,3ihow test.txt

 

替换  s          --------Substitute
$>sed s/a/b/g test.txt//用b替换a
$>sed ‘s@/a@b@g’ test.txt   //用b替换/a
注意:两个 /  之间是正则表达式。用于定位含有特定内容的行,有/的特殊字符,替换符/变为@。

 

sed基础语法

标签:替换   pen   hello   表达   定位   输入   command   comm   制表符   

原文地址:https://www.cnblogs.com/wqbin/p/10887909.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!