1

有一个多个进程登录的目录,我想跟踪选定进程的最新文件。

在 ~/bashrc 我添加了以下内容

function __taillog {

        tail -f $(find $1 -maxdepth 1 -type f -printf "%T@ %p\n" | sort -n | tail -n 1 | cut -d' ' -f 2-)
}

alias taillog='__taillog'

取自:https ://superuser.com/questions/117596/how-to-tail-the-latest-file-in-a-directory

日志文件目录示例

-rw-r--r-- 1 genesys genesys   2284 Mar 19 16:34 gdalog.20130319_163436_906.log
-rw-r--r-- 1 genesys genesys 131072 Mar 19 16:34 gdalog.20130319_163436_906.snapshot.log
-rw-r--r-- 1 genesys genesys  10517 Mar 19 16:54 lcalog.20130319_163332_719.log
-rw-r--r-- 1 genesys genesys 131072 Mar 19 16:54 lcalog.20130319_163332_719.snapshot.log
-rw-r--r-- 1 genesys genesys   3792 Mar 19 16:37 StatServer_TLSTest.20130319_163700_703.log
-rw-r--r-- 1 genesys genesys 160562 Mar 19 16:52 StatServer_TLSTest.20130319_163712_045.log
-rw-r--r-- 1 genesys genesys  49730 Mar 19 16:54 StatServer_TLSTest.20130319_165217_402.log
-rw-r--r-- 1 genesys genesys  53960 Mar 20 09:55 StatServer_TLSTest.20130319_165423_702.log
-rw-r--r-- 1 genesys genesys 131072 Mar 20 09:56 StatServer_TLSTest.20130319_165423_702.snapshot.log

因此,要跟踪所有 StatServer,命令将是

taillog /home/user/logs/StatServer*

它会在给定路径中跟踪该应用程序的最新文件

问题是尾部显示一些文件输出,但在附加日志文件时不显示任何更新。如果运行以下命令,则日志正确尾随

tail -f $(find /home/user/logs/StatServer*  -maxdepth 1 -type f -printf "%T@ %p\n" | sort -n | tail -n 1 | cut -d' ' -f 2-)

一些如何将此命令添加为 bash 函数然后从别名调用它会导致它无法按预期运行。

欢迎任何关于更好方法的建议。

4

2 回答 2

1

我相信你应该运行这个命令:

taillog /home/user/logs

当您说/home/user/logs/this_app*您将所有与模式匹配的文件作为参数传递给taillog并且仅使用第一个参数 ie$1时,该命令最终会转换为tail -f $1.

相反$1,应该是find在该目录级别(即/home/user/logs在您的情况下)查找文件的目录,然后将结果通过管道传输到sort,tailcut.

于 2013-03-19T05:20:03.367 回答
0

我在 linux/bash 上运行你的 taillog 函数没有任何问题。也许日志输出正在被缓冲,所以没有立即写入更改?您可以尝试关闭此 StatServer 的 [log] 缓冲选项。

于 2013-12-12T00:30:44.113 回答