I'm looking for something like baretail with ssh support or the ability to read from standard input so I can pipe the output of plink.

Does anyone have any suggestions.

link|improve this question

54% accept rate
feedback

3 Answers

http://the.earth.li/~sgtatham/putty/0.58/htmldoc/Chapter7.html#plink-usage-batch

use plink (from the putty suite) to automatically ssh, do a tail command, and logout

link|improve this answer
feedback

Microsoft has built a tail program (Tail.exe). It is part of the Windows Server 2003 Resource Kit Tools.

http://www.microsoft.com/Downloads/details.aspx?FamilyID=9d467a69-57ff-4ae7-96ee-b18c4790cffd&displaylang=en

The executable will also function properly on Windows XP.

link|improve this answer
feedback

I dunno about plink, but the way I get baretail to work with ssh is:

ssh username@domain.com 'tail -f www/logs/logfile.log' > ~/temp/current.log

and then open the current.log file with baretail

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.