Display the last part of a file. See also:
head
. More information: https://keith.github.io/tail.1.html.
tail -n 8 path/to/file
tail -n +8 path/to/file
tail -c 8 path/to/file
Ctrl + C
:tail -f path/to/file
Ctrl + C
, even if the file is inaccessible:tail -F path/to/file
tail -n 8 -s 10 -f path/to/file