add/re-enable at_wini debug output
[minix3.git] / man / man1 / tail.1
blob5ee9f7fec4990e52c77a71e1a84fdd3ef007d647
1 .TH TAIL 1
2 .SH NAME
3 tail \- print the last few lines of a file
4 .SH SYNOPSIS
5 \fBtail\fR [\fB\-c \fIn\fR] [\fB\-f] [\fB\-n \fIn\fR] [\fIfile\fR] ...\fR
6 .br
7 .de FL
8 .TP
9 \\fB\\$1\\fR
10 \\$2
12 .de EX
13 .TP 20
14 \\fB\\$1\\fR
15 # \\$2
17 .SH OPTIONS
18 .FL "\-c" "The count refers to characters"
19 .FL "\-f" "On FIFO or special file, keep reading after EOF"
20 .FL "\-n" "The count refers to lines"
21 .SH EXAMPLES
22 .EX "tail \-n 6" "Print last 6 lines of \fIstdin\fR"
23 .EX "tail \-c 20 file" "Print the last 20 characters of \fIfile\fR"
24 .EX "tail \-n 1 file1 file2" "Print last line of two files"
25 .EX "tail \-n +8 file" "Print the tail starting with line 8"
26 .SH DESCRIPTION
27 .PP
28 The last few lines of one or more files are printed.
29 The default count is 10 lines.
30 The default file is \fIstdin\fR.
31 If the value of \fIn\fR for the \fB\-c\fR or \fB\-n\fR flags starts with
32 a + sign, counting starts at the beginning, rather than the end of the file.
33 .SH "SEE ALSO"
34 .BR head (1).