views:

101

answers:

2

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.

+2  A: 

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.

Grant Wagner
A: 

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

Serapth