码迷,mamicode.com
首页 > 系统相关 > 详细

linux查看文件指定行

时间:2020-07-22 21:01:38      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:head   文件   cat   input   awk   int   文件的   两种方法   NPU   

1. 从第1000行开始,显示2000行。即显示1000~2999行

cat input_file | tail -n +1000 | head -n 2000

 

2. 显示 1000行到3000行

cat input_file | head -n 3000 | tail -n +1001

 

*注意两种方法的顺序

分解:

    tail -n 1000:显示最后1000行

    tail -n +1000:从1000行开始显示,显示1000行以后的

    head -n 1000:显示前面1000行

 

3. 用sed命令

 sed -n ‘5,10p‘ input_file这样你就可以只查看文件的第5行到第10行。

4. 用awk处理

awk ‘NR==2, NR==11{print}‘  input_file

或者

awk ‘NR>2 && NR<11 {print $0}‘  input_file

linux查看文件指定行

标签:head   文件   cat   input   awk   int   文件的   两种方法   NPU   

原文地址:https://www.cnblogs.com/shilipojianshen/p/13362375.html

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