Which command lets you view new content as it is written to a log file?
tail -f follows a file and continuously outputs lines that are appended to it, allowing real-time log monitoring.
tail -f
Community Discussion