Is there way have windows XP show me updates to a log file as they happen? I'm thinking of something similar to tail -f <file path> in the linux realm.

link|improve this question

73% accept rate
Thanks everyone for those awesome suggestions! Much appreciated. – Mike B Nov 11 '09 at 20:00
feedback

5 Answers

up vote 5 down vote accepted

Using Windows Powershell, you can use Get-Content < filename > -wait

There's also a discussion of a Windows Server 2003 tools package that has a tail program which supports -f

link|improve this answer
feedback

I have had good luck with http://sourceforge.net/projects/tailforwin32/. It has some nice options for fonts, colors and keyword highlighting. Feels lightweight and fast to me.

link|improve this answer
1  
Tail for win32 is a nice GUI application. Highlighting keywords can give you find -f file.txt | grep 'stuff' like functionality. – Justin Tanner Mar 24 '10 at 18:44
feedback

Just use the tail program from the cygwin project. this is "just" a ported UN*X tail command.

link|improve this answer
feedback

We currently use this http://www.baremetalsoft.com/wintail/

link|improve this answer
feedback

I use UnxUtils which are native win32 ports of common gnu utilities. Then I don't have to bother with cygwin.

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.