I'm looking for the equivalent of the unix 'tail' command that will allow me to watch the output of a log file while it is being written to.
|
closed as off topic by Ben Voigt, ChrisF♦, ЯegDwight, edorian, Jocelyn Oct 1 '12 at 23:03
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
I'd suggest installing something like GNU Utilities for Win32. It has most favourites, including tail. |
|||||||||||||
|
|
If you use PowerShell then this works:
|
|||||||||||||||||||||
|
|
I've always used Baretail for tailing in Windows. It's free and pretty nice. Edit: for a better description of Baretail see this question |
|||||
|
|
There are quite a number of options, however all of them have flaws with more advanced features.
|
|||
|
|
|
There actually is tail for XP, It's just that Microsoft doesn't install it with the standard version of XP; they packaged it in 'Windows Server 2003 Resource Kit Tools'. You can get it here: http://www.microsoft.com/downloads/details.aspx?FamilyID=9d467a69-57ff-4ae7-96ee-b18c4790cffd&DisplayLang=en |
|||
|
|
|
Anybody interested in a DOS tail using batch commands (see below) Its not prefect and lines sometime repeat. usage: tail.bat -d tail.bat -f -f
|
|||
|
|
|
I've used Tail For Windows. Certainly not as elegant as using tailbut then, you're using Windows. ;) |
|||||||||||||
|
|
If you install Cygwin, you can get all the warm and fuzzy Linux commands you are used to. Cygwin is not an emulation layer, it simply provides win32 binaries of common utilities. It does give you a bash shell which is very nice. |
|||||||||
|
|
Does this help? http://malektips.com/xp_dos_0001.html http://commandwindows.com/server2003tools.htm Here is the direct Microsoft link. I have tested it on my machine (just out of curiosity and because I might need it) and it works fine. |
||||
|
|
|
Try Windows Services for UNIX. Provides shells, awk, sed, etc. as well as tail. |
|||||
|
|
If you do not want to install anything at all you can "build your own" batch file that does the job from standard Windows commands. Here are some pointers as to how to do it. 1) Using find /c /v "" yourinput.file, get the number of lines in your input file. The output is something like:
2) Using for /f, parse this output to get the number 15. 3) Using set /a, calculate the number of head lines that needs to be skipped 4) Using for /f "skip=n" skip the head lines and echo/process the tail lines. If I find the time, I will build such a batch file and post it back here. |
|||||
|
|
Download the tail command from Microsoft itself. |
|||
|
|
|
With Windows PowerShell you can use:
|
|||
|
|
|
I prefer TailMe because of the possibility to watch several log files simultaneously in one window: http://www.dschensky.de/Software/Staff/tailme_en.htm |
|||
|
|
|
DOS has no tail command; you can download a Windows binary for GNU tail and other GNU tools here. |
|||
|
|
|
Another option would be to install MSYS (which is more leightweight than Cygwin). |
|||
|
|
|
I haven't seen Log Expert anywhere among answers here: It's customizable and quite good for going around log files, so far it's the best windows graphical log viewer for me. |
|||
|
|
|
If you want to use Win32 ports of some Unix utilities (rather than installing Cygwin), I recommend GNU utilities for Win32. Lighter weight than Cygwin and more portable. |
|||
|
|
|
Grab the win32 port of the gnu tools from http://gnuwin32.sourceforge.net/ You'll have a wonderfully working tail -f then. Works on my XP anyway. |
|||
|
|
|
GnuWin32 tail: tail -f --retry file tail -F file both use the retry option, this helps with the -f not working |
|||
|
|
|
I recommend the GNUWin32 utilities over CygWin. They are more "corporate IT friendly". i.e. All the tools are native windows applications that don't require you to install the a dll. (they can be run off a thumb drive or cd without any installation) They are also easier to remove (just delete the folder.) Functionally, the command line tools are indistinguishable from the cygwin versions. You can find tail in the Core Utils for Windows package. |
|||
|
|
|
install MKS tool kit.. so that you can run all unix commands in windows. tail -f is the command. |
|||
|
|
|
I've used Mtail recently and it seems to work well. This is the GUI type like baretail mentioned above. |
|||
|
|
|
The tail command and many others are available in the Windows Resource Kit Tools package from http://www.microsoft.com/en-us/download/details.aspx?id=17657 |
|||
|
|
|
I just wrote this little batch script. It isn't as sophisticated as the unix "tail" but hopefully someone can add on to it to improve it, like limiting the output to the last 10 lines of the file, etc. If you do improve this script, please send it to me at robbing ~[at]~ gmail.com.
|
||||
|
|
|
I use these and I don't have to cygwin my box. http://unxutils.sourceforge.net/ |
|||
|
|
|
dos's |
|||
|
|