是否有通过网络共享工作的尾巴?

发布于 2024-07-20 16:44:15 字数 80 浏览 7 评论 0原文

我需要一个在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

御守 2024-07-27 16:44:15

Win32 的 GNU 实用程序 有一个本机 tail.exe,我刚刚使用 SMB 路径进行了测试:

tail -f \\server\path\to\file

它似乎可以工作美好的。 我使用记事本更新了 file ,并且 tail 在我的 cmd 窗口中报告了它。

GNU utilities for Win32 has a native tail.exe that I just tested using an SMB path:

tail -f \\server\path\to\file

It seemed to work fine. I updated file using Notepad and tail reported it in my cmd window.

陌上芳菲 2024-07-27 16:44:15

如果您想走这条路,Powershell 中的 Get-Content 也可以执行相同的操作。

 Get-Content \\networkpc\SharedFolder\file.txt -Wait

Get-Content in Powershell can do the equivalent as well if you want to go that route.

 Get-Content \\networkpc\SharedFolder\file.txt -Wait
近箐 2024-07-27 16:44:15

这是我为此编写的一个实用程序:

它使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文