您的位置:首页 > 运维架构 > Linux

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

2016-07-02 17:53 561 查看
【一】从第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'
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: