sed输出指定行
Posted Locutus
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sed输出指定行相关的知识,希望对你有一定的参考价值。
# sed -n 8p file #print line 8
# sed -n -e 1p -e 8p file #print line 1 and line 8
# sed -n 1,8p file #print line 1 to line 8
# sed -n -e 1,8p -e 20p file #print line 1-8 and line 20
-n:取消默认输出。sed命令会默认把输入行打印到屏幕上,所以如果想精准的控制输出,就需要使用参数-n。
-e:进行多项编辑,对输入行进行多项操作时使用,和grep类似。
p:打印行。
以上是关于sed输出指定行的主要内容,如果未能解决你的问题,请参考以下文章