tail

Lists in real time with continuous update the last lines of file

tail -f file

Lists the last m lines from file

tail -n m file

Lists starting from the m-th line

tail -n +m file

Uncategorized