summaryrefslogtreecommitdiff
path: root/uniq.c
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-04-17 16:16:10 +0000
committerErik Andersen <andersen@codepoet.org>2000-04-17 16:16:10 +0000
commite5b6c7dd9cb32852a7f5b19a9855cf3c32543396 (patch)
treeafe963cde5e3882b8785c963d7d1ec07d458a85a /uniq.c
parent4fd10fc73be4ce707c7d55f608d47894a2d1b12c (diff)
downloadbusybox-w32-e5b6c7dd9cb32852a7f5b19a9855cf3c32543396.tar.gz
busybox-w32-e5b6c7dd9cb32852a7f5b19a9855cf3c32543396.tar.bz2
busybox-w32-e5b6c7dd9cb32852a7f5b19a9855cf3c32543396.zip
More updates to the docs, and fixes to sync things with the docs.
-Erik
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 $ */