aboutsummaryrefslogtreecommitdiff
path: root/uniq.c
diff options
context:
space:
mode:
Diffstat (limited to 'uniq.c')
-rw-r--r--uniq.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/uniq.c b/uniq.c
index 2eedb886d..0324856fd 100644
--- a/uniq.c
+++ b/uniq.c
@@ -28,15 +28,9 @@
28#include <errno.h> 28#include <errno.h>
29 29
30static const char uniq_usage[] = 30static const char uniq_usage[] =
31 "uniq [OPTION]... [INPUT [OUTPUT]]\n" 31 "uniq [OPTION]... [INPUT [OUTPUT]]\n\n"
32 "Discard all but one of successive identical lines from INPUT (or\n" 32 "Discard all but one of successive identical lines from INPUT\n"
33 "standard input), writing to OUTPUT (or standard output).\n" 33 "(or standard input), writing to OUTPUT (or standard output).\n";
34 "\n"
35 "\t-h\tdisplay this help and exit\n"
36
37 "\n"
38 "A field is a run of whitespace, then non-whitespace characters.\n"
39 "Fields are skipped before chars.\n";
40 34
41/* max chars in line */ 35/* max chars in line */
42#define UNIQ_MAX 4096 36#define UNIQ_MAX 4096
@@ -190,4 +184,4 @@ int uniq_main(int argc, char **argv)
190 exit(0); 184 exit(0);
191} 185}
192 186
193/* $Id: uniq.c,v 1.8 2000/04/13 01:18:56 erik Exp $ */ 187/* $Id: uniq.c,v 1.9 2000/04/17 16:16:10 erik Exp $ */