aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorbeppu <beppu@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-06-12 23:04:55 +0000
committerbeppu <beppu@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-06-12 23:04:55 +0000
commit40553a0148f7a816c655a738ca79c8ba64d8ad98 (patch)
treef2c3dac9abf34f96c9fbcfde7aa6f8e34891d00c /docs
parent66cc6f473d68f96b98df917c2b3e5967661d010e (diff)
downloadbusybox-w32-40553a0148f7a816c655a738ca79c8ba64d8ad98.tar.gz
busybox-w32-40553a0148f7a816c655a738ca79c8ba64d8ad98.tar.bz2
busybox-w32-40553a0148f7a816c655a738ca79c8ba64d8ad98.zip
+ updated docs to reflect math's filter capabilities.
git-svn-id: svn://busybox.net/trunk/busybox@635 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'docs')
-rw-r--r--docs/busybox.pod7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/busybox.pod b/docs/busybox.pod
index ff054086e..03875a4d7 100644
--- a/docs/busybox.pod
+++ b/docs/busybox.pod
@@ -1017,10 +1017,11 @@ Usage: math expression ...
1017 1017
1018This is a Tiny RPN calculator that understands the 1018This is a Tiny RPN calculator that understands the
1019following operations: +, -, /, *, and, or, not, eor. 1019following operations: +, -, /, *, and, or, not, eor.
1020If no arguments are given, math will process input from STDIN.
1020 1021
1021Example: 1022Example:
1022 1023
1023 $ math 2 2 add 1024 $ math 2 2 +
1024 4 1025 4
1025 $ math 8 8 \* 2 2 + / 1026 $ math 8 8 \* 2 2 + /
1026 16 1027 16
@@ -1028,6 +1029,8 @@ Example:
1028 0 1029 0
1029 $ math 0 1 or 1030 $ math 0 1 or
1030 1 1031 1
1032 $ echo 72 9 / | math
1033 8
1031 1034
1032------------------------------- 1035-------------------------------
1033 1036
@@ -1949,4 +1952,4 @@ Enrique Zanardi <ezanardi@ull.es>
1949 1952
1950=cut 1953=cut
1951 1954
1952# $Id: busybox.pod,v 1.39 2000/06/07 21:19:49 proski Exp $ 1955# $Id: busybox.pod,v 1.40 2000/06/12 23:04:55 beppu Exp $