V8/usr/man/man1/tail.1
.TH TAIL 1
.SH NAME
tail \- deliver the last part of a file
.SH SYNOPSIS
.B tail
[ \(+-number[\fBlbc\fR][\fBfr\fR] ]
[ file ]
.SH DESCRIPTION
.I Tail
copies the named file to the standard output beginning
at a designated place.
If no file is named, the standard input is used.
.PP
Copying begins at distance
.I +number
from the beginning, or
.I \-number
from the end of the input.
.I Number
is counted in units of lines, 1K blocks or characters,
according to the appended option
.B l,
.B b
or
.B c.
When no units are specified, counting is by lines.
.PP
Option
.B r
causes tail to print lines from the end of the file in reverse order.
Option
.B f
(follow) causes
.I tail
not to stop at the end, and to
watch for further data to appear.
.SH "SEE ALSO"
dd(1)
.SH BUGS
Tails relative to the end of the file
are treasured up in a buffer, and thus
are limited in length.
.br
Various kinds of anomalous behavior may happen
with character special files.