Display the last part of a file. See also:
head. More information: https://keith.github.io/xcode-man-pages/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}}