Blogger Information
Blog 42
fans 3
comment 2
visits 93657
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Linux中的tail 的使用
Whitney的博客
Original
2132 people have browsed it

一、tail命令用法

tail [-f] [-c Number | -n Number | -m Number | -b Number | -k Number ] [ file ]

参数解释:

-f 该参数用于监视file文件增长

-c Number 从Number字节位置读取指定文件

-n Number 从 Number行位置读取指定文件

-m Number 从Number多字节字符位置读取指定文件,比如说你的文件假设包括中文字,假设指定-c参数,可能导致截断,但使用-m则会避免此问题。

-b Number 从Number表示的512字节块位置读取指定文件

-k Number 从 Number 表示的1kb块位置读取指定文件

File 指定操作的目标文件名称

上述命令中,都涉及到number,假设不指定,默认显示10行。Number前面可以使用正负号,表示该偏移从顶部还是尾部开始计算。

Tail可运行文件一般在/usr/bin/以下。

 

二、tail命令使用方法演示例子

1.     tail –f filename

说明:监视filename文件的尾部内容(默认10行,相当于增加参数-n 10),刷新显示在屏幕上。退出,按Ctrl+c

2.     tail –n 20 filename

说明:显示filename最后20行

3.     tail –r –n 10 filename

说明:逆序显示filename最后10行

 

本文参考链接:https://www.cnblogs.com/mfryf/p/3336804.html


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post