What would you use to view contents of a large error log file?
Answer Posted / Durga Rani
To view the contents of a large error log file, tools like less (less -F /path/to/logfile), tail (-f /path/to/logfile), and grep (grep 'error' /path/to/logfile) can be used. These utilities allow you to navigate through the log file more efficiently and filter specific lines containing errors.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers