- 浏览: 4754360 次
- 性别:
- 来自: 上海
文章分类
最新评论
-
bzhao:
你也应该可以这样:(not tested)./rbtunnel ...
在Bash脚本中怎么关闭文件描述符? -
bzhao:
如果有A进程原代码情况下,通过如下调用,把他的子进程继承关闭则 ...
在Bash脚本中怎么关闭文件描述符? -
Master-Gao:
楼主咋没分析下源码呢?
我使用过的Linux命令之dirname - 截取给定路径的目录部分 -
jiedushi:
tail -F 就可以吧
Linux下实时跟踪log4j日志文件的bash脚本 - 增强了tail -f的功能 -
java_is_new:
新手学习了,就是不明白为一个网卡配多个ip有什么用
我使用过的Linux命令之ifconfig - 网络配置命令
我使用过的Linux命令之tailf - 跟踪日志文件/更好的tail -f版本
本文链接:http://codingstandards.iteye.com/blog/832760 (转载请注明出处)
用途说明
tailf命令几乎等同于tail -f,严格说来应该与tail --follow=name更相似些。当文件改名之后它也能继续跟踪,特别适合于日志文件的跟踪(follow the growth of a log file)。与tail -f不同的是,如果文件不增长,它不会去访问磁盘文件(It is similar to tail -f but does not access the file when it is not growing. This has the side effect of not updating the access time for the file, so a filesystem flush does not occur periodically when no log activity is happening.)。tailf特别适合那些便携机上跟踪日志文件,因为它能省电,因为减少了磁盘访问嘛(tailf is extremely useful for monitoring log files on a laptop when logging is infrequent and the user desires that the hard disk spin down to conserve battery life.)。tailf命令不是个脚本,而是一个用C代码编译后的二进制执行文件,某些Linux安装之后没有这个命令,本文提供了怎么编译安装tailf命令的方法。
常用参数
格式:tailf logfile
动态跟踪日志文件logfile,最初的时候打印文件的最后10行内容。
使用示例
示例一 使用tailf命令跟踪日志
[root@web imx_server]# tailf log/WEB.LOG
"seq": 5710,
"clientId": 1291343201649254,
"presenceStatus": "1"
} }})
16:09:21.324 DEBUG http-80-79 hyjc.cometd.CometdServlet - { "cid": 1291343201649002, "op": "recv", "ncc0": 175}
16:09:21.444 DEBUG http-80-32 hyjc.filter.AccessCounterFilter - uri=/imx/cometd/service
16:09:21.506 DEBUG http-80-79 hyjc.filter.AccessCounterFilter - uri=/imx/cometd/service
16:09:23.239 DEBUG http-80-45 hyjc.cometd.CometdServlet - { "cid": 1291343201649184, "op": "recv", "ncc0": 55}
16:09:23.327 DEBUG http-80-45 hyjc.filter.AccessCounterFilter - uri=/imx/cometd/service
16:09:24.288 DEBUG http-80-145 hyjc.cometd.CometdServlet - { "cid": 1291283017076175, "op": "recv", "ncc0": 82}
16:09:24.339 DEBUG http-80-81 hyjc.cometd.CometdServlet - { "cid": 1291283017076151, "op": "recv", "ncc0": 142}
16:09:24.360 DEBUG http-80-64 hyjc.cometd.CometdServlet - { "cid": 1291343201649090, "op": "recv", "ncc0": 40}
16:09:24.359 DEBUG http-80-143 hyjc.cometd.CometdServlet - { "cid": 1291283017076176, "op": "recv", "ncc0": 66}
16:09:24.878 DEBUG http-80-145 hyjc.filter.AccessCounterFilter - uri=/imx/cometd/service
16:09:24.892 DEBUG http-80-143 hyjc.filter.AccessCounterFilter - uri=/imx/cometd/service
16:09:24.896 DEBUG http-80-64 hyjc.filter.AccessCounterFilter - uri=/imx/cometd/service
16:09:24.906 DEBUG http-80-81 hyjc.filter.AccessCounterFilter - uri=/imx/cometd/service
16:09:25.095 DEBUG http-80-115 hyjc.filter.AccessCounterFilter - uri=/imx/cometd/service
16:09:25.095 DEBUG http-80-115 hyjc.cometd.CometdServlet - msgType IMX_ACTIVE_TEST msgBody {"clientId":1291343201649002,"presenceStatus":"1","seq":385}
16:09:25.095 INFO http-80-115 imx.client.ImxClient - Tx IMX_ACTIVE_TEST{seq=5711,client_id=1291343201649002,presence_status=1(presence_status_online),}
16:09:25.095 DEBUG http-80-115 hyjc.cometd.CometdServlet - { "cid": 1291343201649002, "op": "send", "sent": 0, "rc": 1, "msg": { "mt": "IMX_ACTIVE_TEST", "mb": {
"seq": 5711,
"clientId": 1291343201649002,
"presenceStatus": "1"
} }}
Ctrl+C
[root@web imx_server]#
示例二 编译安装tailf命令
有些Linux版本不带tailf命令的。
[root@smsgw root]# tailf
-bash: tailf: command not found
[root@smsgw root]#
到代码搜索网站www.koders.com输入tailf.c就可以搜索到源代码
tailf.c结果页面:http://www.koders.com/default.aspx?s=tailf.c&submit=Search&la=*&li=*
tailf.c源码页面:http://www.koders.com/c/fidB6EFAC156A7B4C4A46B38039C79B4AD34939EED0.aspx?s=tailf#L1
点左上角的download就可下载,也可直接下载本文附件tailf.zip。
[root@smsgw tailf]# unzip tailf.zip
Archive: tailf.zip
inflating: tailf.c
[root@smsgw tailf]# ls
tailf.c tailf.zip
[root@smsgw tailf]# gcc -o /usr/bin/tailf tailf.c
tailf.c:34:17: nls.h: 没有那个文件或目录
tailf.c: In function `tailf':
tailf.c:53: warning: passing arg 2 of `fprintf' makes pointer from integer without a cast
tailf.c: In function `main':
tailf.c:88: `LC_ALL' undeclared (first use in this function)
tailf.c:88: (Each undeclared identifier is reported only once
tailf.c:88: for each function it appears in.)
tailf.c:89: `PACKAGE' undeclared (first use in this function)
tailf.c:89: `LOCALEDIR' undeclared (first use in this function)
tailf.c:93: warning: passing arg 2 of `fprintf' makes pointer from integer without a cast
tailf.c:105: warning: passing arg 2 of `fprintf' makes pointer from integer without a cast
[root@smsgw tailf]#
修改一下tailf.c的源代码。
第34行附近:注释掉头文件,增加宏定义
//#include "nls.h"
#define _(s) s
第89行附近:把原来的代码注释掉
//setlocale(LC_ALL, "");
//bindtextdomain(PACKAGE, LOCALEDIR);
//textdomain(PACKAGE);
看了源代码之后,你是不是发现其实Linux命令其实并不太神秘。
注:本文附件中的tailf.c已经修改成下面的样子。
/* tailf.c -- tail a log file and then follow it * Created: Tue Jan 9 15:49:21 1996 by faith@acm.org * Copyright 1996, 2003 Rickard E. Faith (faith@acm.org) * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * less -F and tail -f cause a disk access every five seconds. This * program avoids this problem by waiting for the file size to change. * Hence, the file is not accessed, and the access time does not need to be * flushed back to disk. This is sort of a "stealth" tail. */ #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <malloc.h> #include <sys/stat.h> //#include "nls.h" #define _(s) s static size_t filesize(const char *filename) { struct stat sb; if (!stat(filename, &sb)) return sb.st_size; return 0; } static void tailf(const char *filename, int lines) { char **buffer; int head = 0; int tail = 0; FILE *str; int i; if (!(str = fopen(filename, "r"))) { fprintf(stderr, _("Cannot open \"%s\" for read\n"), filename); perror(""); exit(1); } buffer = malloc(lines * sizeof(*buffer)); for (i = 0; i < lines; i++) buffer[i] = malloc(BUFSIZ + 1); while (fgets(buffer[tail], BUFSIZ, str)) { if (++tail >= lines) { tail = 0; head = 1; } } if (head) { for (i = tail; i < lines; i++) fputs(buffer[i], stdout); for (i = 0; i < tail; i++) fputs(buffer[i], stdout); } else { for (i = head; i < tail; i++) fputs(buffer[i], stdout); } fflush(stdout); for (i = 0; i < lines; i++) free(buffer[i]); free(buffer); } int main(int argc, char **argv) { char buffer[BUFSIZ]; size_t osize, nsize; FILE *str; const char *filename; int count; //setlocale(LC_ALL, ""); //bindtextdomain(PACKAGE, LOCALEDIR); //textdomain(PACKAGE); if (argc != 2) { fprintf(stderr, _("Usage: tailf logfile\n")); exit(1); } filename = argv[1]; tailf(filename, 10); for (osize = filesize(filename);;) { nsize = filesize(filename); if (nsize != osize) { if (!(str = fopen(filename, "r"))) { fprintf(stderr, _("Cannot open \"%s\" for read\n"), filename); perror(argv[0]); exit(1); } if (!fseek(str, osize, SEEK_SET)) while ((count = fread(buffer, 1, sizeof(buffer), str)) > 0) fwrite(buffer, 1, count, stdout); fflush(stdout); fclose(str); osize = nsize; } usleep(250000); /* 250mS */ } return 0; }
[root@smsgw tailf]# gcc -Wall -o /usr/bin/tailf tailf.c
[root@smsgw tailf]# tailf
Usage: tailf logfile
[root@smsgw tailf]#
问题思考
相关资料
【1】linuxcommand.org tailf手册页
【2】代码搜索 tailf源代码
- tailf.zip (3.4 KB)
- 下载次数: 42
发表评论
-
在Linux用tar归档压缩文件时忽略某些文件和目录
2013-02-01 10:19 17053在Linux下,常用tar对文 ... -
使用nmap扫描服务器端口的一次操作
2012-11-01 17:00 15139使用nmap扫描服务器端口的一次操作 本文来自:http ... -
我使用过的Linux命令之wget - ooo
2011-09-14 13:10 0我使用过的Linux命令之wg ... -
推荐一篇学习Vim使用的好文:酷壳 - 简明 Vim 练级攻略
2011-09-09 12:53 9150简明 Vim 练级攻略 http://coolshell.c ... -
推荐一篇学习Vim使用的好文:酷壳 - 简明 Vim 练级攻略
2011-09-09 12:49 1简明 Vim 练级攻略 http://coolshell.c ... -
我使用过的Linux命令之:(冒号) - 啥也不做(除了……)
2011-08-29 13:18 12101我使用过的Linux命令之: ... -
我使用过的Linux命令之date - 显示、修改系统日期时间
2011-08-25 09:21 41985我使用过的Linux命令之da ... -
我使用过的Linux命令之declare - 声明shell变量(不知道没关系、知道了就更好的内建命令)
2011-08-16 09:22 21831我使用过的Linux命令之declare - 声明shell变 ... -
我使用过的Linux命令之alias - 设置命令的别名,让 Linux 命令更简练
2011-08-11 09:31 28829我使用过的Linux命令之alias - 设置命令的别名,让 ... -
我使用过的Linux命令之ar - 创建静态库.a文件
2011-08-08 10:40 51934我使用过的Linux命令之ar - 创建静态库.a文件 本 ... -
我使用过的Linux命令之crontab - 设置例行任务(类似于Windows中的任务计划)
2011-08-04 22:26 9752我使用过的Linux命令之crontab - 设置例行任务(类 ... -
我使用过的Linux命令之chmod - 改变文件/目录的访问权限
2011-08-03 21:33 10706我使用过的Linux命令之chmod - 改变文件/目录的访问 ... -
我使用过的Linux命令之export - 设置或显示环境变量
2011-08-02 19:55 25441我使用过的Linux命令之export - 设置或显示环境变量 ... -
我使用过的Linux命令之wc - 统计文件行数、单词数或字节数
2011-07-26 10:50 29019我使用过的Linux命令之wc - 统计文件行数、单词数或字节 ... -
我使用过的Linux命令之groupdel - 删除群组
2011-07-22 22:13 9693我使用过的Linux命令之gr ... -
我使用过的Linux命令之ifconfig - 网络配置命令
2011-07-21 20:43 60555我使用过的Linux命令之ifconfig - 网络配置命令 ... -
我使用过的Linux命令之ll - 列出文件/目录的详细信息
2011-07-20 21:22 7209我使用过的Linux命令之ll ... -
我使用过的Linux命令之mkdir - 创建目录
2011-07-20 20:58 13686我使用过的Linux命令之mkdir - 创建目录 本文链 ... -
我使用过的Linux命令之perror - 解释错误代码
2011-07-18 20:29 25081我使用过的Linux命令之perror - 解释错误代码 ... -
我使用过的Linux命令之ping - 测试与目标主机的连通性
2011-07-16 10:46 26615我使用过的Linux命令之ping - 测试与目标主机的连通性 ...
相关推荐
`tail -f` 是 Linux 和 Unix 系统中一个非常实用的命令,它允许用户实时监控文件的变化。在 Windows 系统中,由于其与 Linux 的底层机制不同,原生的命令提示符(CMD)并不支持 `tail -f` 命令。然而,通过在给定的...
在Linux中,`tail -f`命令常用来实时跟踪一个正在更新的日志文件,每当文件有新的内容追加时,`tail`会立即显示出来。Windows下的这个`tail.exe`工具提供了相同的功能,允许用户在Win7或Win10系统中实时监控日志文件...
综上所述,`tail` 命令在 Linux 系统中具有非常广泛的应用场景,不仅可以用来监控日志文件的变化,还可以用于查看各种文件的末尾内容,是一个非常实用的命令行工具。理解其基本语法和常用选项对于提高工作效率和解决...
在Linux中,掌握各种命令行工具的使用是提升工作效率的关键,其中`tail`命令就是常用的一个工具,主要用于查看文件的尾部内容。 `tail`命令的作用是展示文件的末尾部分,通常用于监控日志文件的实时变化,或者快速...
tailf命令几乎等同于tail -f,严格说来应该与tail –follow=name更相似些。当文件改名之后它也能继续跟踪,特别适合于日志文件的跟踪(follow the growth of a log file)。与tail -f不同的是,如果文件不增长,它...
Linux 文件命令读取文件头尾命令 head 和 tail Linux 操作系统是一种广泛使用的开源操作系统,对于系统管理和维护至关重要。在 Linux 系统中,文件命令是基础命令之一,用于读取和处理文件。今天,我们将讨论两个...
为了帮助更好地理解和操作这些日志文件,下面是一些常见的Linux命令示例: - 查看最新10行日志文件内容: ```bash tail -n 10 /var/log/httpd/access_log ``` - 搜索特定关键词(例如“404”): ```bash ...
以上是对Linux系统目录结构的一个较为全面的介绍,通过了解这些目录的作用和功能,可以帮助用户更好地管理Linux系统,并且为后续的学习和开发提供了坚实的基础。此外,掌握常用的命令工具也是十分必要的,这有助于...
Debian Linux 是一个广泛使用的 Linux 发行版,其稳定性和安全性受到广大用户的认可。对于初学者来说,掌握 Debian Linux 的基本命令和目录结构至关重要。 ##### 目录结构 - **/bin**:存放系统基本命令的二进制...
`tail`命令在Unix/Linux中常用于查看文件的末尾内容,特别是跟踪文件的实时更新,这对于日志监控或者调试过程非常有用。标题提到的"DOS下可以使用的tail -f工具"正是为了解决在DOS环境中缺乏类似功能的问题。 `tail...
本文将深入探讨“tail”命令,这是Linux中一个非常实用的工具,用于查看文件的末尾部分,常用于实时监控日志文件的变化。在Linux基础课件中,"Linux系统文件内容查看tail命令"是一个关键主题,它涵盖了11页的内容,...
通过熟练掌握`head`命令,Linux用户可以更高效地管理和分析文件,尤其是在处理大型文件时,可以快速定位到关键信息,避免了不必要的资源浪费。在日常的Linux系统操作中,`head`命令与其他文本处理工具(如`tail`、`...
### Linux查看日志常用命令详解 #### 一、`cat`命令 `cat`命令是Linux中最常用的文本处理工具之一,具有多种用途,包括显示文件内容、从...希望以上内容能够帮助您更好地理解和使用这些基础但极其重要的Linux命令。
- `tail`:查看日志文件的尾部,常用 `-f` 参数实时跟踪日志更新,例如 `tail -f /var/log/messages`。 - `grep`:搜索日志文件中的特定字符串,例如 `grep 'error' /var/log/secure`。 3. **日志分析**: - ...
在Linux操作系统中,掌握命令行工具是至关重要的,因为大多数系统管理、开发和运维工作都是通过命令行界面完成的。...通过深入学习和实践这些命令,你将能够更好地理解和操控Linux系统,提升工作效率。
根据提供的文件信息,我们可以归纳出一系列关于 Linux 的关键知识点,主要围绕着文件系统结构、基本命令以及配置文件的理解。下面将对这些知识点进行详细的解析。 ### 文件系统结构 #### 根目录 (`/`) Linux 系统...
本文将深入探讨“Linux命令大全-终极版”这一资源中包含的大量命令,帮助用户更好地理解和掌握在Linux环境中进行日常操作的关键技能。 1. **文件和目录管理**: - `ls`:列出目录内容。 - `cd`:切换当前工作目录...
`tail2win`是一个小型的应用程序,它的主要作用是让你能在Windows上像在Linux中一样,使用`tail -f`命令实时查看文件的变化。 描述中提到"下载之后解压到c:/windows/system32目录下",这意味着你需要首先获取`tail2...
在Windows操作系统中,通常我们使用的是图形化界面来管理和查看文件,但在Linux系统中,有一个非常实用的命令行工具——`tail`,它用于查看文件的末尾内容,特别是对于实时监控日志文件非常有用。在Windows环境下,...