What's a good linux command line utility for watching a log file live? It's probably obvious but I totally forgot it.

link|improve this question

40% accept rate
feedback

3 Answers

up vote 11 down vote accepted

There are two things that leap immediately to mind...

tail -f

or

multitail

link|improve this answer
thank you sir. I'll give ya the answer since Linker3000 has so many points, but I still appreciate the help! – kylehotchkiss Jan 6 '11 at 1:25
feedback

Assuming you are in the same folder as the logfile:

tail -f logfilename

link|improve this answer
feedback

If you want to watch a specific aspect of your file, say just IPs in an access log, you can do :

tail -f your_file | cut -d' ' -f1 | logtop

assuming that IPs are the first column of your log file.

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.