Display the last part of a file. See also:
head
. More information: https://manned.org/man/freebsd-13.0/tail.1.
tail -n {{count}} {{path/to/file}}
tail -n +{{count}} {{path/to/file}}
tail -c {{count}} {{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 {{count}} -s {{seconds}} -f {{path/to/file}}