fix typo
This commit is contained in:
parent
ad442060b8
commit
210137fba4
4
tail.1
4
tail.1
|
@ -8,8 +8,8 @@ tail \- output last part of a file
|
||||||
.RI [ file ]
|
.RI [ file ]
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
.B tail
|
.B tail
|
||||||
writes the first 10 lines of the file to stdout. If no file is given, tail
|
writes the last 10 lines of the file to stdout. If no file is given, tail reads
|
||||||
reads from stdin.
|
from stdin.
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
.TP
|
.TP
|
||||||
.BI \-n " lines"
|
.BI \-n " lines"
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/* See LICENSE file for copyright and license details. */
|
/* See LICENSE file for copyright and license details. */
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user