• 查看文档的后几行命令:tail


    假如有一个文件test.txt,内容如下:

    [root@lee ~]# cat test.txt 
    这是第1行
    这是第2行
    这是第3行
    这是第4行
    这是第5行
    这是第6行
    这是第7行
    这是第8行
    这是第9行
    这是第10行
    这是第11行
    这是第12行
    这是第13行
    这是第14行
    这是第15行
    这是第16行
    这是第17行
    这是第18行
    这是第19行
    这是第20行
    这是第21行
    这是第22行
    这是第23行
    这是第24行
    [root@lee ~]#
    View Code

    1、我们使用tail命令查看test.txt内容

      tail test.txt(默认只读取文件末尾10行数据,相当于tail -n 10 test.txt)

    [root@lee ~]# tail test.txt 
    这是第15行
    这是第16行
    这是第17行
    这是第18行
    这是第19行
    这是第20行
    这是第21行
    这是第22行
    这是第23行
    这是第24行
    [root@lee ~]#
    View Code

    2、当然,您也可以修改参数,读取你想要的行数,比如读取15行

      tail -n 15 test.txt 

    [root@lee ~]# tail -n 15 test.txt  
    这是第10行
    这是第11行
    这是第12行
    这是第13行
    这是第14行
    这是第15行
    这是第16行
    这是第17行
    这是第18行
    这是第19行
    这是第20行
    这是第21行
    这是第22行
    这是第23行
    这是第24行
    [root@lee ~]#
    View Code

    3、使用-f命令动态监测test.txt文件

      tail -f test.txt

    [root@lee ~]# tail -f test.txt 
    这是第15行
    这是第16行
    这是第17行
    这是第18行
    这是第19行
    这是第20行
    这是第21行
    这是第22行
    这是第23行
    这是第24行
    View Code
    时不我待,不负韶华!立刻行动!不吃学习的苦就会吃生活的苦!
  • 相关阅读:
    static作用(1)
    Android开发之事件
    安卓开发之intent
    字符串去空
    字符串自实现(一)(mystrcpy,mystrcat,mystrcmp)
    Gin框架介绍及使用
    django model fake
    CentOS7 永久修改系统时间
    ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
    linux安装mysqlclient库
  • 原文地址:https://www.cnblogs.com/zrp2013/p/3906884.html
Copyright © 2020-2023  润新知