I want to live monitor a logfile generated on a remote linux host with a windows tool.

I'm looking for something like:

$> ssh remoteserver 'tail -F /var/log/err.log' | tool.exe

But on Windows. Sadly there is no way around it.

tool.exe supports reading from stdin.

Any ideas on how to accomplish this without hacking an ssh-connection directly into tool.exe?

link|improve this question
feedback

1 Answer

$> plink.exe remoteserver 'tail -f /var/log/err.log' | tool.exe

does the trick (plink.exe is from puTTY toolset)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.