The tail is the part of a list that comes after the head. It's also a unix command that shows the last lines of a file.
Depending on the context tail may refer to:
the part of a list that comes after the head i.e. the list you obtain when you remove the first element.
the
tailunix command which displays the last lines of a file. It's counterpart which displays the first lines ishead(unix-head). Example:tail -n 10 filewill output last 10 lines offile.
See also: