Velvet Star Monitor

Standout celebrity highlights with iconic style.

news

Linux command line utility for watching log files live?

Writer Matthew Harrington

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

4 Answers

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

tail -f

or

multitail

2

Assuming you are in the same folder as the logfile:

tail -f logfilename

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.

The tailf command is functionally equivalent to tail -f but better in terms of performance. From man tailf:

tailf will print out the last 10 lines of a file and then wait for the file to grow. It is similar to tail -f but does not access the file when it is not growing. This has the side effect of not updating the access time for the file, so a filesystem flush does not occur periodically when no log activity is happening. tailf is extremely useful for monitoring log files on a laptop when logging is infrequent and the user desires that the hard disk spin down to conserve battery life.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy