2011-06-02 12:03:34 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "text.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
static int linecmp(const char **, const char **);
|
|
|
|
|
|
|
|
static bool rflag = false;
|
2011-06-02 12:09:30 +00:00
|
|
|
static bool uflag = false;
|
2012-05-21 20:09:44 +00:00
|
|
|
|
|
|
|
static struct linebuf linebuf = EMPTY_LINEBUF;
|
|
|
|
|
2013-06-14 18:20:47 +00:00
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
eprintf("usage: %s [-ru] [file...]\n", argv0);
|
|
|
|
}
|
|
|
|
|
2011-06-02 12:03:34 +00:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
long i;
|
|
|
|
FILE *fp;
|
|
|
|
|
2013-06-14 18:20:47 +00:00
|
|
|
ARGBEGIN {
|
|
|
|
case 'r':
|
|
|
|
rflag = true;
|
|
|
|
break;
|
|
|
|
case 'u':
|
|
|
|
uflag = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
|
|
|
|
|
|
|
if(argc == 0) {
|
2012-05-21 20:09:44 +00:00
|
|
|
getlines(stdin, &linebuf);
|
2013-06-14 18:20:47 +00:00
|
|
|
} else for(; argc > 0; argc--, argv++) {
|
2013-11-13 11:39:24 +00:00
|
|
|
if(!(fp = fopen(argv[0], "r"))) {
|
|
|
|
weprintf("fopen %s:", argv[0]);
|
|
|
|
continue;
|
|
|
|
}
|
2012-05-21 20:09:44 +00:00
|
|
|
getlines(fp, &linebuf);
|
2011-06-02 12:03:34 +00:00
|
|
|
fclose(fp);
|
|
|
|
}
|
2013-06-14 18:20:47 +00:00
|
|
|
qsort(linebuf.lines, linebuf.nlines, sizeof *linebuf.lines,
|
|
|
|
(int (*)(const void *, const void *))linecmp);
|
2011-06-02 12:03:34 +00:00
|
|
|
|
2013-06-14 18:20:47 +00:00
|
|
|
for(i = 0; i < linebuf.nlines; i++) {
|
|
|
|
if(!uflag || i == 0 || strcmp(linebuf.lines[i],
|
|
|
|
linebuf.lines[i-1]) != 0) {
|
2012-05-21 20:09:44 +00:00
|
|
|
fputs(linebuf.lines[i], stdout);
|
2013-06-14 18:20:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-07 15:41:55 +00:00
|
|
|
return EXIT_SUCCESS;
|
2011-06-02 12:03:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
linecmp(const char **a, const char **b)
|
|
|
|
{
|
|
|
|
return strcmp(*a, *b) * (rflag ? -1 : +1);
|
|
|
|
}
|
2013-06-14 18:20:47 +00:00
|
|
|
|