1

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.

Justin Dearing
  • 1,037
  • 12
  • 33
  • You can checkout dbitail: https://github.com/pschweitz/DBITail/wiki And for download: https://github.com/pschweitz/DBITail/releases –  Jun 23 '16 at 08:51

3 Answers3

2

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

dyasny
  • 18,802
  • 6
  • 49
  • 64
1

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

indi
  • 181
  • 5
1

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.

Jared Brown
  • 247
  • 2
  • 6
  • 15