首页 > 代码库 > sed命令的一个用法
sed命令的一个用法
有命令如下:
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.)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。