Search This Blog & Internet

Tuesday, April 10, 2012

Visualize logs real time in Linux

With the following command you can visualize the logs real time in Linux:

tail -f FILENAME

If you want to filter in real time logs, tail and grep can be combined:

tail -f FILENAME | grep FILTER