This commit is contained in:
Connor Lane Smith 2011-05-27 00:54:10 +01:00
parent ad442060b8
commit 210137fba4
2 changed files with 2 additions and 3 deletions

4
tail.1
View File

@ -8,8 +8,8 @@ tail \- output last part of a file
.RI [ file ]
.SH DESCRIPTION
.B tail
writes the first 10 lines of the file to stdout. If no file is given, tail
reads from stdin.
writes the last 10 lines of the file to stdout. If no file is given, tail reads
from stdin.
.SH OPTIONS
.TP
.BI \-n " lines"

View File

@ -1,7 +1,6 @@
/* See LICENSE file for copyright and license details. */
#include <dirent.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>