是否有通过网络共享工作的尾巴?
我需要一个在 Windows 下工作并可以监视网络共享上的文件的 tail 实用程序。 我尝试过的那些在本地运行良好,但在 SMB 上运行不佳。
I need a tail utility that works under windows and can monitor file on a network share. The ones I tried worked fine locally but not over SMB.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Win32 的 GNU 实用程序 有一个本机 tail.exe,我刚刚使用 SMB 路径进行了测试:
它似乎可以工作美好的。 我使用记事本更新了
file
,并且 tail 在我的 cmd 窗口中报告了它。GNU utilities for Win32 has a native tail.exe that I just tested using an SMB path:
It seemed to work fine. I updated
file
using Notepad and tail reported it in my cmd window.如果您想走这条路,Powershell 中的 Get-Content 也可以执行相同的操作。
Get-Content in Powershell can do the equivalent as well if you want to go that route.
这是我为此编写的一个实用程序:
它使用 FileSystemWatcher 查找本地文件夹或网络共享中日志文件的更改(不必安装,只需提供 UNC 路径)并将新内容附加到控制台。
在github上: https://github.com/danbyrne84/multitail
http://www.danielbyrne.net/projects/multitail
希望这有帮助
Here's a utility I wrote to do just that:
It uses a FileSystemWatcher to look for changes in log files within local folders or network shares (don't have to be mounted, just provide the UNC path) and appends the new content to the console.
on github: https://github.com/danbyrne84/multitail
http://www.danielbyrne.net/projects/multitail
Hope this helps