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.