tailDisplay 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}}
count lines in a file and refresh every seconds seconds:tail -n {{count}} -s {{seconds}} -f {{path/to/file}}