blob: c0229aecb492c8d5e0a8ff7024e7d538b6cb2f27 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
John Beppuabb47722000-01-06 00:48:21 +00002/*
Erik Andersen0b874ed2000-01-06 01:14:56 +00003 * Mini uniq implementation for busybox
John Beppuabb47722000-01-06 00:48:21 +00004 *
5 *
Erik Andersen61677fe2000-04-13 01:18:56 +00006 * Copyright (C) 1999,2000 by Lineo, inc.
John Beppuabb47722000-01-06 00:48:21 +00007 * Written by John Beppu <beppu@lineo.com>
Matt Kraaie0bcce02000-09-27 02:29:39 +00008 * Rewritten by Matt Kraai <kraai@alumni.carnegiemellon.edu>
John Beppuabb47722000-01-06 00:48:21 +00009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
24 */
25
Eric Andersen3570a342000-09-25 21:45:58 +000026#include "busybox.h"
John Beppuabb47722000-01-06 00:48:21 +000027#include <stdio.h>
John Beppu96f1f332000-01-06 23:49:21 +000028#include <string.h>
29#include <errno.h>
John Beppuabb47722000-01-06 00:48:21 +000030
Eric Andersen5b5db382000-12-09 16:37:53 +000031static int print_count;
32static int print_uniq = 1;
33static int print_duplicates = 1;
34
35static void print_line(char *line, int count, FILE *fp)
36{
37 if ((print_duplicates && count > 1) || (print_uniq && count == 1)) {
38 if (print_count)
39 fprintf(fp, "%7d\t%s", count, line);
40 else
41 fputs(line, fp);
42 }
43}
44
Erik Andersene49d5ec2000-02-08 19:58:47 +000045int uniq_main(int argc, char **argv)
John Beppuabb47722000-01-06 00:48:21 +000046{
Matt Kraaie0bcce02000-09-27 02:29:39 +000047 FILE *in = stdin, *out = stdout;
48 char *lastline = NULL, *input;
Eric Andersen5b5db382000-12-09 16:37:53 +000049 int opt, count = 0;
John Beppuabb47722000-01-06 00:48:21 +000050
Erik Andersene49d5ec2000-02-08 19:58:47 +000051 /* parse argv[] */
Eric Andersen5b5db382000-12-09 16:37:53 +000052 while ((opt = getopt(argc, argv, "cdu")) > 0) {
53 switch (opt) {
54 case 'c':
55 print_count = 1;
56 break;
57 case 'd':
58 print_duplicates = 1;
59 print_uniq = 0;
60 break;
61 case 'u':
62 print_duplicates = 0;
63 print_uniq = 1;
64 break;
65 }
66 }
Matt Kraaie0bcce02000-09-27 02:29:39 +000067
Eric Andersen5b5db382000-12-09 16:37:53 +000068 if (argv[optind] != NULL) {
69 in = xfopen(argv[optind], "r");
70 if (argv[optind+1] != NULL)
71 out = xfopen(argv[optind+1], "w");
Matt Kraaie0bcce02000-09-27 02:29:39 +000072 }
73
74 while ((input = get_line_from_file(in)) != NULL) {
75 if (lastline == NULL || strcmp(input, lastline) != 0) {
Eric Andersen5b5db382000-12-09 16:37:53 +000076 print_line(lastline, count, out);
Matt Kraaie0bcce02000-09-27 02:29:39 +000077 free(lastline);
78 lastline = input;
Eric Andersen5b5db382000-12-09 16:37:53 +000079 count = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +000080 }
Eric Andersen5b5db382000-12-09 16:37:53 +000081 count++;
John Beppuabb47722000-01-06 00:48:21 +000082 }
Eric Andersen5b5db382000-12-09 16:37:53 +000083 print_line(lastline, count, out);
Matt Kraaie0bcce02000-09-27 02:29:39 +000084 free(lastline);
John Beppuabb47722000-01-06 00:48:21 +000085
Matt Kraaie0bcce02000-09-27 02:29:39 +000086 return EXIT_SUCCESS;
John Beppuabb47722000-01-06 00:48:21 +000087}