Linux tail命令

本文概述

  • Linux tail-n
  • tail
‘ tail’ 命令显??示文件的最后几行。其主要目的是读取错误消息。
默认情况下, 它还将显示文件的最后十行。
句法:
tail < file name>

例:
tail jtp.txt

Linux tail命令

文章图片
查看上面的快照, 在命令” tail jtp.txt” 的帮助下显示文件” jtp.txt” 的最后十行。
Linux tail-n ‘ tail -n’ 选项显示指定的行数。
句法:
tail -n< number> < file name>

例:
tail -n5 jtp.txt

Linux tail命令

文章图片
查看上面的快照, 借助” tail -n5 jtp.txt” 命令显示文件” jtp.txt” 的最后五行。
tail 【Linux tail命令】‘ tail -c’ 选项显示从最后一个开始的指定字节数。
句法:
tail -c< number> < file name>

例:
tail -c12 jtp.txt

Linux tail命令

文章图片
查看上面的快照, 借助” tail -c12 jtp.txt” 命令显示文件” jtp.txt” 的最后12个字节。

    推荐阅读