2011-06-02 08:03:34 -04: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 void getlines(FILE *, const char *);
|
|
|
|
|
|
|
|
static bool rflag = false;
|
2011-06-02 08:09:30 -04:00
|
|
|
static bool uflag = false;
|
2011-06-02 08:03:34 -04:00
|
|
|
static char **lines = NULL;
|
|
|
|
static long nlines = 0;
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
long i;
|
|
|
|
FILE *fp;
|
|
|
|
|
2011-06-02 08:09:30 -04:00
|
|
|
while((c = getopt(argc, argv, "ru")) != -1)
|
2011-06-02 08:03:34 -04:00
|
|
|
switch(c) {
|
|
|
|
case 'r':
|
|
|
|
rflag = true;
|
|
|
|
break;
|
2011-06-02 08:09:30 -04:00
|
|
|
case 'u':
|
|
|
|
uflag = true;
|
|
|
|
break;
|
2011-06-02 08:03:34 -04:00
|
|
|
default:
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
if(optind == argc)
|
|
|
|
getlines(stdin, "<stdin>");
|
|
|
|
else for(; optind < argc; optind++) {
|
|
|
|
if(!(fp = fopen(argv[optind], "r")))
|
|
|
|
eprintf("fopen %s:", argv[optind]);
|
|
|
|
getlines(fp, argv[optind]);
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
qsort(lines, nlines, sizeof *lines, (int (*)(const void *, const void *))linecmp);
|
|
|
|
|
2011-06-02 08:09:30 -04:00
|
|
|
for(i = 0; i < nlines; i++)
|
|
|
|
if(!uflag || i == 0 || strcmp(lines[i], lines[i-1]) != 0)
|
|
|
|
fputs(lines[i], stdout);
|
2011-06-02 08:03:34 -04:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
getlines(FILE *fp, const char *str)
|
|
|
|
{
|
|
|
|
char *line = NULL;
|
|
|
|
size_t size = 0;
|
|
|
|
|
|
|
|
while(afgets(&line, &size, fp)) {
|
|
|
|
if(!(lines = realloc(lines, ++nlines * sizeof *lines)))
|
|
|
|
eprintf("realloc:");
|
|
|
|
if(!(lines[nlines-1] = malloc(strlen(line)+1)))
|
|
|
|
eprintf("malloc:");
|
|
|
|
strcpy(lines[nlines-1], line);
|
|
|
|
}
|
|
|
|
free(line);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
linecmp(const char **a, const char **b)
|
|
|
|
{
|
|
|
|
return strcmp(*a, *b) * (rflag ? -1 : +1);
|
|
|
|
}
|