linux 如何显示一个文件的某几行(中间几行)

来源:互联网 发布:重力感应效果 js 编辑:程序博客网 时间:2024/06/05 19:24

【一】从第3000行开始,显示1000行。即显示3000~3999行

cat filename | tail -n +3000 | head -n 1000

 

【二】显示1000行到3000行

cat filename| head -n 3000 | tail -n +1000

 

*注意两种方法的顺序

 

分解:

    tail -n 1000:显示最后1000行

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

    head -n 1000:显示前面1000行

 

【三】用sed命令

 

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

 

一般查看文件:

cat test.txt

tail -f test.txt

若有关键词:

cat test.txt|grep 'xxx'

tail -f test.txt|grep  'xxx'


条件多了,可以多加几个grep


cat test.txt|grep 'xxx' |grep 'yyy'

tail -f test.txt|grep  'xxx' |grep 'yyy'


0 0
原创粉丝点击