aboutsummaryrefslogtreecommitdiff
path: root/docs
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 /docs
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 'docs')
-rw-r--r--docs/busybox.pod8
-rw-r--r--docs/busybox.sgml12
2 files changed, 19 insertions, 1 deletions
diff --git a/docs/busybox.pod b/docs/busybox.pod
index 2ddacd152..5e4798439 100644
--- a/docs/busybox.pod
+++ b/docs/busybox.pod
@@ -1954,6 +1954,12 @@ Usage: uniq [OPTION]... [INPUT [OUTPUT]]
1954 1954
1955Discard all but one of successive identical lines from INPUT 1955Discard all but one of successive identical lines from INPUT
1956(or standard input), writing to OUTPUT (or standard output). 1956(or standard input), writing to OUTPUT (or standard output).
1957
1958Options:
1959
1960 -c prefix lines by the number of occurrences
1961 -d only print duplicate lines
1962 -u only print unique lines
1957 1963
1958Example: 1964Example:
1959 1965
@@ -2286,4 +2292,4 @@ Enrique Zanardi <ezanardi@ull.es>
2286 2292
2287=cut 2293=cut
2288 2294
2289# $Id: busybox.pod,v 1.79 2000/12/08 20:38:00 andersen Exp $ 2295# $Id: busybox.pod,v 1.80 2000/12/09 16:37:53 andersen Exp $
diff --git a/docs/busybox.sgml b/docs/busybox.sgml
index 184814125..7d86e19e2 100644
--- a/docs/busybox.sgml
+++ b/docs/busybox.sgml
@@ -3428,6 +3428,18 @@
3428 </para> 3428 </para>
3429 3429
3430 <para> 3430 <para>
3431 Options:
3432 </para>
3433
3434 <para>
3435 <screen>
3436 -c prefix lines by the number of occurrences
3437 -d only print duplicate lines
3438 -u only print unique lines
3439 </screen>
3440 </para>
3441
3442 <para>
3431 Example: 3443 Example:
3432 </para> 3444 </para>
3433 3445