最近在写一款微型日志监控,奈何没有找到好的监听文件变动的依赖,于是就自己写了一个,主要用法类似于 tail
命令,如:
tail -100f system.log
windows 下就是
Get-Content -Path system.log -Tail 100 -Wait
1
fighterhit 2021-12-12 02:28:25 +08:00
无意间看到有个 golang 版的 tail -f 实现 https://github.com/hpcloud/tail
|
2
licoycn OP @fighterhit #1 这个我用过,是通过 fsnotify 来实现的
|