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

sed命令的一个用法

时间:2014-08-04 18:22:29      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:starting   address   example   linux   stream   

有命令如下:

1.sed -n ‘1~2!p‘ datafile

该条命令的意思是:每两行读取datafile文件到模式空间,匹配每两行中的第一行,不打印,剩下的行打印,取消默认输出。

2.sed -n ‘1~2p‘ datafile

该条命令的意思是:每两行读取datafile文件到模式空间,匹配每两行中的第一行,打印,剩下的行不打印,取消默认输出。

3.sed ‘1~2d‘ datafile

这条命令和第一条命令等同。

附:Linux中sed的命令手册相关解释

first~step
              Match  every  step’th  line  starting  with  line
              first.   For  example, ‘‘sed -n 1~2p’’ will print
              all the odd-numbered lines in the  input  stream,
              and  the address 2~5 will match every fifth line,
              starting with the second.  first can be zero;  in
              this  case,  sed  operates as if it were equal to
              step.  (This is an extension.)


sed命令的一个用法,布布扣,bubuko.com

sed命令的一个用法

标签:starting   address   example   linux   stream   

原文地址:http://lielie.blog.51cto.com/3946919/1535421

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