aboutsummaryrefslogtreecommitdiff
path: root/coreutils/uniq.c
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-01-23 18:19:02 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-01-23 18:19:02 +0000
commit56c31f14e31948366da595479dd9fc6f32cbbb5f (patch)
tree2728cbb296484026cb657f92f78e1bb0806ba6f4 /coreutils/uniq.c
parentdf6986a40984363be0005bcb8828f9e2ac222f9e (diff)
downloadbusybox-w32-56c31f14e31948366da595479dd9fc6f32cbbb5f.tar.gz
busybox-w32-56c31f14e31948366da595479dd9fc6f32cbbb5f.tar.bz2
busybox-w32-56c31f14e31948366da595479dd9fc6f32cbbb5f.zip
* added (and documented) "-n" option for head -
contributed Friedrich Vedder <fwv@myrtle.lahn.de> * Cleanup for a number of usage messages -- also contributed Friedrich Vedder <fwv@myrtle.lahn.de> -Erik git-svn-id: svn://busybox.net/trunk/busybox@336 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/uniq.c')
-rw-r--r--coreutils/uniq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/uniq.c b/coreutils/uniq.c
index 034ea316e..a7bff54ec 100644
--- a/coreutils/uniq.c
+++ b/coreutils/uniq.c
@@ -27,7 +27,7 @@
27#include <errno.h> 27#include <errno.h>
28 28
29static const char uniq_usage[] = 29static const char uniq_usage[] =
30"Usage: uniq [OPTION]... [INPUT [OUTPUT]]\n" 30"uniq [OPTION]... [INPUT [OUTPUT]]\n"
31"Discard all but one of successive identical lines from INPUT (or\n" 31"Discard all but one of successive identical lines from INPUT (or\n"
32"standard input), writing to OUTPUT (or standard output).\n" 32"standard input), writing to OUTPUT (or standard output).\n"
33"\n" 33"\n"
@@ -193,4 +193,4 @@ uniq_main(int argc, char **argv)
193 exit(0); 193 exit(0);
194} 194}
195 195
196/* $Id: uniq.c,v 1.4 2000/01/07 01:57:32 beppu Exp $ */ 196/* $Id: uniq.c,v 1.5 2000/01/23 18:19:02 erik Exp $ */