vote up 1 vote down star

Hi,

The tail command on the DOS does not seem to be recognized on my XP. Any suggestions on printing last few lines on a very big log file on DOS.

Thanks Arun

flag

11 Answers

vote up 3 vote down check

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.

link|flag
thanks. its just so painful that i have to go installing cygwin on any machine i touch... just to check the log. :) – arun.poruri May 8 at 20:47
The Microsoft tools work. What error do you get? – johnny May 8 at 20:49
I think you can just grab a tail.exe from Cygwin, and run that on its own. – Kekoa May 8 at 20:52
Of course, cygwin IS an emulation layer. If you don't want the Cygwin bloat, take a look at MSYS instead. – Neil Butterworth May 8 at 20:54
Cygwin is an emulation layer, or rather a compatibility layer. It's a DLL that implements Unix API stuff so that you can compile Unix apps to run on Windows. It's also a collection of Unix apps compiled against, and shipped with, said DLL. – Adam Jaskiewicz May 8 at 20:57
show 1 more comment
vote up 4 vote down

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.

link|flag
nopes. thanks. i tried this :) – arun.poruri May 8 at 20:44
Why does it fail? What happens? According to these sites it works like a charm, but I admit I have not tried them. – johnny May 8 at 20:44
Just downloaded and installed from Microsoft and it works. – johnny May 8 at 20:49
vote up 3 vote down

Download the tail command from Microsoft itself.

link|flag
Don't you find it strange how the link looks like it would be pointing to Microsoft, but it isn't? :) – Tomalak May 8 at 21:12
It needs some handholding :) – cartman May 8 at 21:19
vote up 3 vote down

DOS has no tail command; you can download a Windows binary for GNU tail and other GNU tools here.

link|flag
vote up 7 vote down

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

link|flag
vote up 0 vote down

dos's type works like *nux's cat, though just like cat, it does dump the whole file, so its not really a true tail, but its going to be available in a pinch without downloading/installing a true tail substitute.

link|flag
vote up 2 vote down

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.

link|flag
vote up 4 vote down

Another option would be to install MSYS (which is more leightweight than Cygwin).

link|flag
vote up 0 vote down

With Windows PowerShell you can use:

Get-Content <file> -Wait
link|flag
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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