Command: tail
Show the end of a file.
tail -n 5 /etc/services
tail is useful for recent log output later in the course.
You may see the shorter old form tail -5, but use -n when teaching yourself because it states what the number controls.
Docs Pointers
- Run
man tail. - Read reading files and service logs.

Linux Foundations