Displaying the last part of a file: tail

To display the last 10 lines of a text file use the command:

   tail filename

Examples

To display the last 10 lines of a text file:

   tail fred

This displays the last 10 lines of the file fred which is in the current directory.

To display the last 50 characters in a file:

   tail -50c help.txt

This displays the last 50 characters in the file help.txt which is in the current directory.