Linux – some way to keep a live-updating log file open in terminal

linuxlogging

This must've been done before: I want to keep a log file open in terminal so I can monitor updates to it as they occur. My searches are coming up with everything but this situation… I must be missing some terminology or something key, because people do this all the time inside of other programs (NetBeans, or rails server, for example).

Best Answer

Try with:

tail -f your.log

where -f stands for follow.

Related Question