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

Linux小蜗牛

时间:2019-11-01 14:34:48      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:默认   web   文件内容   linu   文件中   seq   就会   inux   常用   

  • head 从文件内容的头部开始查看(默认查看10行)
    [root@oldboyboy tmp]# seq 15 >l.sh
    [root@oldboyboy tmp]# cat l.sh 
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    [root@oldboyboy tmp]# head l.sh 
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    [root@oldboyboy tmp]# 
  • head -3 l.sh 查看文件前三行的内容
    [root@oldboyboy tmp]# head -3 l.sh
    1
    2
    3
    [root@oldboyboy tmp]# 
  • head -3 l.sh o.txt 同时查看多个文件的前三行
  • 参数

    • -c 显示某个文件内容的前几个字符
      head -c 3 o.txt 查看文件中的前3个字符
      
      [root@oldboyboy tmp]# cat o.txt
      hello   !   my  qq  123.

    I am oldboy my qq 1234567
    [root@oldboyboy tmp]# head -c 3 o.txt
    hel
    [root@oldboyboy tmp]#

    
    * tail 从文件内容的末尾开始查看
    tail -5 l.sh    查看文件末尾的最后5行

    [root@oldboyboy tmp]# tail -5 l.sh
    11
    12
    13
    14
    15
    [root@oldboyboy tmp]#

    
    参数
    -f    用来实时查看文件末尾的内容
    tail -f l.sh   实时查看文件末尾的内容,常用来查看WEB的日志文件

    [root@oldboyboy tmp]# tail -f l.sh
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15

    
    当文件的末尾有新的内容追加时,就会实时显示在文件末尾。

    Linux小蜗牛

    标签:默认   web   文件内容   linu   文件中   seq   就会   inux   常用   

    原文地址:https://blog.51cto.com/14423146/2446943

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