用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.
  1. # show from line 12 to line 23
  2. sed -n '12,23 p' archivo.txt
  3.  
  4. # or just one (line 15)
  5. sed -n 15p archivo.txt

以上是关于用sed显示文件中的几行的主要内容,如果未能解决你的问题,请参考以下文章

三剑客grep和sed相关案例

linux命令怎么显示文件某一行或几行内容

linux怎么显示文件中第几行

shell 打印指定行倒数几行

shell 打印指定行倒数几行

sed 删除最后几行 和删除指定行 awk使用