December 2012
Intermediate to advanced
888 pages
48h 24m
English
If you want to watch a log file as it is written to, or want to monitor a user’s actions as they are occurring, you need to be able to track log files as they change. In these situations you need the tail command, which prints the last few lines of a file and updates as new lines are added. This command tells tail to print the last few lines of /var/log/httpd/access_log, the Apache hit log:
matthew@seymour:~$ tail /var/log/httpd/access_log
To get tail to remain running and update as the file changes, add the -f parameter (follow):
matthew@seymour:~$ tail -f /var/log/httpd/access_log
You can tie the lifespan of a tail follow to the existence of a process by specifying the --pid parameter. When you do ...
Read now
Unlock full access