有一个多个进程登录的目录,我想跟踪选定进程的最新文件。
在 ~/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 函数然后从别名调用它会导致它无法按预期运行。
欢迎任何关于更好方法的建议。