用sed显示文件中的几行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用sed显示文件中的几行相关的知识,希望对你有一定的参考价值。
Some times you need some specific range of lines from a file and the commands 'head' and 'tail' are not enough for you. This could be a easy solution for this problem.
# show from line 12 to line 23 sed -n '12,23 p' archivo.txt # or just one (line 15) sed -n 15p archivo.txt
以上是关于用sed显示文件中的几行的主要内容,如果未能解决你的问题,请参考以下文章