tail -F
不能 tail 新添加的问题,
multitail
的宽度有问题
multitail -d -Q 1 "/home/${USER}/logs/project_*.log"
宽度好像只有 80
“不能 tail 新添加” 是啥意思
不是小写的 f 嘛?
tail -f
应该是 tail -f 。替代品的话可以尝试 less +F 。
噗,可以大写 f 的呀
没记错的话,tail -f 应该是根据文件描述来定位文件,tail -F 应该是根据文件名来定位文件
- Keep reading file until Ctrl + C:
tail -f file
- Keep reading file until Ctrl + C, even if the file is rotated:
tail -F file
但是 `tail -F ~/proj_*.log` 这个样子, tail 不能 tail 到新加的文件,有 tail 的替代品吗?
没有这个工具,自己写一个吧,也不复杂。
这个星号是 bash 展开的吧,所以执行的时候文件已经确定了
https://github.com/Andre-Vink/vtail
https://github.com/VerKnowSys/lw
好像都能满足你的要求