QuestionQ58

Linux Fundamentals

Which command lets you view new content as it is written to a log file?

  • A cat
  • B grep -f
  • C cut -f1-5
  • D tail -f
Explanation

tail -f follows a file and continuously outputs lines that are appended to it, allowing real-time log monitoring.

Community Discussion

No comments yet. Be the first to start the discussion!