Problem Statement
Which option of the 'tail' command follows log updates in real time?
Explanation
Using tail -f continuously outputs new lines added to a file.
It’s commonly used to monitor live logs like nginx or system logs while debugging.
Code Solution
SolutionRead Only
tail -f /var/log/syslog
Practice Sets
This question appears in the following practice sets: