aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-12-09 16:37:53 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-12-09 16:37:53 +0000
commit5a44cbbfe0f8cb43349169fcf4dd3a8d20f1c41a (patch)
treedcf75d601711f5c3b7ccf036ba80b7fcc71fc338 /applets
parent03efd1bce85b9258a93ee26bb025cf70f9ec137c (diff)
downloadbusybox-w32-5a44cbbfe0f8cb43349169fcf4dd3a8d20f1c41a.tar.gz
busybox-w32-5a44cbbfe0f8cb43349169fcf4dd3a8d20f1c41a.tar.bz2
busybox-w32-5a44cbbfe0f8cb43349169fcf4dd3a8d20f1c41a.zip
Patch from Matt Kraai to implement uniq -[cdu]
git-svn-id: svn://busybox.net/trunk/busybox@1409 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'applets')
-rw-r--r--applets/usage.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/applets/usage.c b/applets/usage.c
index 75c421a09..ae6cec8df 100644
--- a/applets/usage.c
+++ b/applets/usage.c
@@ -1365,6 +1365,10 @@ const char uniq_usage[] =
1365#ifndef BB_FEATURE_TRIVIAL_HELP 1365#ifndef BB_FEATURE_TRIVIAL_HELP
1366 "\nDiscard all but one of successive identical lines from INPUT\n" 1366 "\nDiscard all but one of successive identical lines from INPUT\n"
1367 "(or standard input), writing to OUTPUT (or standard output).\n" 1367 "(or standard input), writing to OUTPUT (or standard output).\n"
1368 "Options:\n"
1369 "\t-c\tprefix lines by the number of occurrences\n"
1370 "\t-d\tonly print duplicate lines\n"
1371 "\t-u\tonly print unique lines\n"
1368#endif 1372#endif
1369 ; 1373 ;
1370#endif 1374#endif