View a log file in Linux dynamically

linux, logging

Solution

`tail -f yourlog.csv`

Newly appended lines will continuously show.

Problem

I have a log file in .csv format in Linux, that is being updated continuously. I want to view the log file as it is being updated. Is there any Linux command(s) to do that?

Original source