tail - prints last 10 lines of each file to standard output

Usage: tail [options] [<file>]...

Example

sxx
tail /etc/passwd

Options

long option short option description
‑‑help ‑h Print help and exit.
‑‑lines=[+]NUM ‑n=[+]NUM Print last NUM lines instead of first 10; with the leading '+' print lines starting with line number NUM.

Implementation

Reference