aboutsummaryrefslogtreecommitdiff
path: root/coreutils/uniq.c
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-04-17 16:16:10 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-04-17 16:16:10 +0000
commitd53cc65a1205f2a1b5a9706441504a993a06aa8f (patch)
treeafe963cde5e3882b8785c963d7d1ec07d458a85a /coreutils/uniq.c
parent20d662d561d8d642b825bb00c77638af010cf690 (diff)
downloadbusybox-w32-d53cc65a1205f2a1b5a9706441504a993a06aa8f.tar.gz
busybox-w32-d53cc65a1205f2a1b5a9706441504a993a06aa8f.tar.bz2
busybox-w32-d53cc65a1205f2a1b5a9706441504a993a06aa8f.zip
More updates to the docs, and fixes to sync things with the docs.
-Erik git-svn-id: svn://busybox.net/trunk/busybox@467 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/uniq.c')
-rw-r--r--coreutils/uniq.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/coreutils/uniq.c b/coreutils/uniq.c
index 2eedb886d..0324856fd 100644
--- a/coreutils/uniq.c
+++ b/coreutils/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 $ */