Add mandoc-manpage for head(1) and clean up code
and mark it as finished in the README.
This commit is contained in:
parent
454fab03aa
commit
741d8c9a76
2
README
2
README
|
@ -33,7 +33,7 @@ The following tools are implemented ('*' == finished, '#' == UTF-8 support,
|
||||||
=* false yes none
|
=* false yes none
|
||||||
#* fold yes none
|
#* fold yes none
|
||||||
=* grep yes none
|
=* grep yes none
|
||||||
head yes none
|
=* head yes none
|
||||||
= hostname non-posix none
|
= hostname non-posix none
|
||||||
=* kill yes none
|
=* kill yes none
|
||||||
= link yes none
|
= link yes none
|
||||||
|
|
59
head.1
59
head.1
|
@ -1,18 +1,43 @@
|
||||||
.TH HEAD 1 sbase\-VERSION
|
.Dd January 25, 2015
|
||||||
.SH NAME
|
.Dt HEAD 1 sbase\-VERSION
|
||||||
head \- output first part of files
|
.Sh NAME
|
||||||
.SH SYNOPSIS
|
.Nm head
|
||||||
.B head
|
.Nd display initial lines of files
|
||||||
.RB [ \-n
|
.Sh SYNOPSIS
|
||||||
.IR lines ]
|
.Nm head
|
||||||
.RI [ file ...]
|
.Op Fl n Ar num
|
||||||
.SH DESCRIPTION
|
.Op Fl N
|
||||||
.B head
|
.Op Ar file ...
|
||||||
writes the first 10 lines of each file to stdout. If no file is given, head
|
.Sh DESCRIPTION
|
||||||
|
.Nm
|
||||||
|
writes
|
||||||
|
.Ar num
|
||||||
|
|
|
||||||
|
.Sy N
|
||||||
|
lines of each
|
||||||
|
.Ar file
|
||||||
|
to stdout.
|
||||||
|
If no file is given
|
||||||
|
.Nm
|
||||||
reads from stdin.
|
reads from stdin.
|
||||||
.SH OPTIONS
|
.Sh OPTIONS
|
||||||
.TP
|
.Bl -tag -width Ds
|
||||||
.BI \-n " lines"
|
.It Fl n Ar num | Fl N
|
||||||
outputs the given number of lines.
|
Display
|
||||||
.SH SEE ALSO
|
.Ar num
|
||||||
.IR tail (1)
|
|
|
||||||
|
.Sy N
|
||||||
|
lines. Default is 10.
|
||||||
|
.El
|
||||||
|
.Sh SEE ALSO
|
||||||
|
.Xr tail 1
|
||||||
|
.Sh STANDARDS
|
||||||
|
The
|
||||||
|
.Nm
|
||||||
|
utility is compliant with the
|
||||||
|
.St -p1003.1-2008
|
||||||
|
specification.
|
||||||
|
.Pp
|
||||||
|
The
|
||||||
|
.Op Fl N
|
||||||
|
flag is an extension to that specification.
|
||||||
|
|
39
head.c
39
head.c
|
@ -4,15 +4,30 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "text.h"
|
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
static void head(FILE *, const char *, long);
|
static void
|
||||||
|
head(FILE *fp, const char *str, long n)
|
||||||
|
{
|
||||||
|
char *buf = NULL;
|
||||||
|
size_t size = 0;
|
||||||
|
ssize_t len;
|
||||||
|
unsigned long i = 0;
|
||||||
|
|
||||||
|
while (i < n && ((len = getline(&buf, &size, fp)) != -1)) {
|
||||||
|
fputs(buf, stdout);
|
||||||
|
if (buf[len - 1] == '\n')
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
free(buf);
|
||||||
|
if (ferror(fp))
|
||||||
|
eprintf("%s: read error:", str);
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
usage(void)
|
usage(void)
|
||||||
{
|
{
|
||||||
eprintf("usage: %s [-n lines] [file...]\n", argv0);
|
eprintf("usage: %s [-n lines] [-N] [file...]\n", argv0);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
@ -54,21 +69,3 @@ main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
head(FILE *fp, const char *str, long n)
|
|
||||||
{
|
|
||||||
char *buf = NULL;
|
|
||||||
size_t size = 0;
|
|
||||||
ssize_t len;
|
|
||||||
unsigned long i = 0;
|
|
||||||
|
|
||||||
while (i < n && ((len = getline(&buf, &size, fp)) != -1)) {
|
|
||||||
fputs(buf, stdout);
|
|
||||||
if (buf[len - 1] == '\n')
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
free(buf);
|
|
||||||
if (ferror(fp))
|
|
||||||
eprintf("%s: read error:", str);
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user