add UNLEASHED_OBJ to unleashed.mk
[unleashed/tickless.git] / share / man / man1 / bc.1
blob3be75f4fdd98cfacd3291c0b96bf8531d5203982
1 '\" te
2 .\"  Copyright 1989 AT&T  Copyright (c) 2003, Sun Microsystems, Inc.  All Rights Reserved  Portions Copyright (c) 1992, X/Open Company Limited  All Rights Reserved
3 .\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at
4 .\" http://www.opengroup.org/bookstore/.
5 .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html.
6 .\"  This notice shall appear on any product containing this material.
7 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
8 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
9 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
10 .TH BC 1 "Oct 25, 2017"
11 .SH NAME
12 bc \- arbitrary precision arithmetic language
13 .SH SYNOPSIS
14 .LP
15 .nf
16 \fB/usr/bin/bc\fR [\fB-c\fR] [\fB-l\fR] [\fIfile\fR]...
17 .fi
19 .SH DESCRIPTION
20 .sp
21 .LP
22 The \fBbc\fR utility implements an arbitrary precision calculator. It takes
23 input from any files given, then reads from the standard input. If the standard
24 input and standard output to \fBbc\fR are attached to a terminal, the
25 invocation of \fBbc\fR is  \fIinteractive\fR, causing behavioral constraints
26 described in the following sections. \fBbc\fR processes a language that
27 resembles C and is a preprocessor for the desk calculator program \fBdc\fR,
28 which it invokes automatically unless the \fB-c\fR option is specified. In this
29 case the \fBdc\fR input is sent to the standard output instead.
30 .SH USAGE
31 .sp
32 .LP
33 The syntax for  \fBbc\fR programs is as follows:
34 .sp
35 .ne 2
36 .na
37 \fB\fIL\fR\fR
38 .ad
39 .RS 5n
40 Means a letter \fBa\fR\(mi\fBz\fR,
41 .RE
43 .sp
44 .ne 2
45 .na
46 \fB\fIE\fR\fR
47 .ad
48 .RS 5n
49 Means an expression: a (mathematical or logical) value, an operand  that takes
50 a value, or a combination of operands and operators that evaluates to a value,
51 .RE
53 .sp
54 .ne 2
55 .na
56 \fB\fIS\fR\fR
57 .ad
58 .RS 5n
59 Means a statement.
60 .RE
62 .SS "Comments"
63 .sp
64 .LP
65 Enclosed in \fB/*\fR and \fB*/\fR.
66 .SS "Names (Operands)"
67 .br
68 .in +2
69 Simple variables: \fIL\fR.
70 .in -2
71 .br
72 .in +2
73 Array elements: \fIL\fR [ \fIE\fR ] (up to \fBBC_DIM_MAX\fR dimensions).
74 .in -2
75 .br
76 .in +2
77 The words \fBibase\fR, \fBobase\fR (limited to \fBBC_BASE_MAX\fR), and
78 \fBscale\fR (limited to \fBBC_SCALE_MAX\fR).
79 .in -2
80 .SS "Other Operands"
81 .sp
82 .LP
83 Arbitrarily long numbers with optional sign and decimal point. Strings of fewer
84 than \fBBC_STRING_MAX\fR characters, between double quotes ("). \fB(\fR \fIE\fR
85 \fB)\fR
86 .sp
87 .ne 2
88 .na
89 \fB\fBsqrt ( \fR\fIE\fR\fB )\fR\fR
90 .ad
91 .RS 21n
92 Square root
93 .RE
95 .sp
96 .ne 2
97 .na
98 \fB\fBlength ( \fR\fIE\fR\fB )\fR\fR
99 .ad
100 .RS 21n
101 Number of significant decimal digits.
105 .ne 2
107 \fB\fBscale ( \fR\fIE\fR\fB )\fR\fR
109 .RS 21n
110 Number of digits right of decimal point.
114 .ne 2
116 \fB\fIL \fR\fB( \fR\fIE\fR , ... , \fIE\fR\fB )\fR\fR
118 .RS 21n
122 .SS "Operators"
124 .ne 2
126 \fB\fB+   \(mi   *   /   %   ^\fR\fR
128 .sp .6
129 .RS 4n
130 (\fB%\fR is remainder; \fB^\fR is power)
134 .ne 2
136 \fB\fB++   \(mi\(mi \fR\fR
138 .sp .6
139 .RS 4n
140 (prefix and postfix; apply to names)
144 .ne 2
146 \fB\fB==   <=   >=   !=   <   >\fR\fR
148 .sp .6
149 .RS 4n
154 .ne 2
156 \fB\fB=   =+   =\(mi   =*   =/   =%   =^\fR\fR
158 .sp .6
159 .RS 4n
163 .SS "Statements"
165 .in +2
166 \fIE\fR
167 .in -2
169 .in +2
170 \fB{\fR \fIS\fR \fB;\fR.\|.\|. \fB;\fR \fIS\fR \fB}\fR
171 .in -2
173 .in +2
174 \fBif (\fR \fIE\fR \fB)\fR \fIS\fR
175 .in -2
177 .in +2
178 \fBwhile (\fR \fIE\fR \fB)\fR \fIS\fR
179 .in -2
181 .in +2
182 \fBfor (\fR \fIE\fR \fB;\fR \fIE\fR \fB;\fR \fIE\fR \fB)\fR \fIS\fR
183 .in -2
185 .in +2
186 null statement
187 .in -2
189 .in +2
190 \fBbreak\fR
191 .in -2
193 .in +2
194 \fBquit\fR
195 .in -2
198 \&.string
199 .SS "Function Definitions"
201 .in +2
202 \fBdefine\fR \fIL\fR \fB(\fR \fIL\fR \fB,\fR.\|.\|.\|\fB,\fR \fIL\fR \fB) {\fR
203 .in -2
205 .in +2
206 \fBauto\fR \fIL\fR \fB,\fR.\|.\|.\|\fB,\fR \fIL\fR
207 .in -2
209 .in +2
210 \fIS\fR \fB;\fR.\|.\|.\| \fIS\fR
211 .in -2
213 .in +2
214 \fBreturn (\fR \fIE\fR \fB)\fR
215 .in -2
217 .in +2
218 \fB}\fR
219 .in -2
220 .SS "Functions in \fB-l\fR Math Library"
222 .ne 2
224 \fB\fBs(\fR\fIx\fR\fB)\fR\fR
226 .RS 10n
227 sine
231 .ne 2
233 \fB\fBc(\fR\fIx\fR\fB)\fR\fR
235 .RS 10n
236 cosine
240 .ne 2
242 \fB\fBe(\fR\fIx\fR\fB)\fR\fR
244 .RS 10n
245 exponential
249 .ne 2
251 \fB\fBl(\fR\fIx\fR\fB)\fR\fR
253 .RS 10n
258 .ne 2
260 \fB\fBa(\fR\fIx\fR\fB)\fR\fR
262 .RS 10n
263 arctangent
267 .ne 2
269 \fB\fBj(\fR\fIn\fR\fB,\fR\fIx)\fR\fR
271 .RS 10n
272 Bessel function
277 All function arguments are passed by value.
280 The value of a statement that is an expression is printed unless the main
281 operator is an assignment. Either semicolons or new-lines may separate
282 statements. Assignment to \fBscale\fR influences the number of digits to be
283 retained on arithmetic operations in the manner of \fBdc\fR. Assignments to
284 \fBibase\fR or \fBobase\fR set the input and output number radix respectively.
287 The same letter may be used as an array, a function, and a simple variable
288 simultaneously. All variables are global to the program. \fBauto\fR variables
289 are stacked during function calls. When using arrays as function arguments or
290 defining them as automatic variables, empty square brackets must follow the
291 array name.
292 .SH OPTIONS
295 The following operands are supported:
297 .ne 2
299 \fB\fB-c\fR\fR
301 .RS 6n
302 Compiles only. The output is \fBdc\fR commands that are sent to the standard
303 output.
307 .ne 2
309 \fB\fB-l\fR\fR
311 .RS 6n
312 Defines the math functions and initializes \fBscale\fR to \fB20\fR, instead of
313 the default zero. All math results have the scale of \fB20\fR.
316 .SH OPERANDS
319 The following operands are supported:
321 .ne 2
323 \fB\fIfile\fR\fR
325 .RS 8n
326 A pathname of a text file containing \fBbc\fR program statements. After all
327 cases of \fIfile\fR have been read, \fBbc\fR reads the standard input.
330 .SH EXAMPLES
332 \fBExample 1 \fRSetting the precision of a variable
335 In the shell, the following assigns an approximation of the first ten digits of
336 \fBn\fR to the variable \fIx\fR:
339 .in +2
341 \fBx=$(printf "%s\en" 'scale = 10; 104348/33215' | bc)\fR
343 .in -2
347 \fBExample 2 \fRDefining a computing function
350 Defines a function to compute an approximate value of the exponential function:
353 .in +2
355 \fBscale = 20
356 define e(x){
357         auto a, b, c, i, s
358         a = 1
359         b = 1
360         s = 1
361         for(i=1; 1==1; i++){
362                 a = a*x
363                 b = b*i
364                 c = a/b
365                 if(c == 0) return(s)
366                 s = s+c
367         }
368 }\fR
370 .in -2
374 \fBExample 3 \fRPrinting the approximate values of the function
377 Prints approximate values of the exponential function of the first ten
378 integers:
381 .in +2
383 \fBfor(i=1; i<=10; i++) e(i)\fR
385 .in -2
393 .in +2
395 \fBfor (i = 1; i <= 10; ++i) {         e(i) }\fR
397 .in -2
400 .SH ENVIRONMENT VARIABLES
403 See \fBenviron\fR(5) for descriptions of the following environment variables
404 that affect the execution of \fBbc\fR: \fBLANG\fR, \fBLC_ALL\fR,
405 \fBLC_CTYPE\fR, \fBLC_MESSAGES\fR, and \fBNLSPATH\fR.
406 .SH EXIT STATUS
409 The following exit values are returned:
411 .ne 2
413 \fB\fB0\fR\fR
415 .RS 15n
416 All input files were processed successfully.
420 .ne 2
422 \fB\fBunspecified\fR\fR
424 .RS 15n
425 An error occurred.
428 .SH FILES
430 .ne 2
432 \fB\fB/usr/lib/lib.b\fR\fR
434 .RS 25n
435 mathematical library
439 .ne 2
441 \fB\fB/usr/include/limits.h\fR\fR
443 .RS 25n
444 to define BC_ parameters
447 .SH ATTRIBUTES
450 See \fBattributes\fR(5) for descriptions of the following attributes:
455 box;
456 c | c
457 l | l .
458 ATTRIBUTE TYPE  ATTRIBUTE VALUE
460 Interface Stability     Standard
463 .SH SEE ALSO
466 \fBdc\fR(1), \fBawk\fR(1), \fBattributes\fR(5), \fBenviron\fR(5),
467 \fBstandards\fR(5)
468 .SH NOTES
471 The \fBbc\fR command does not recognize the logical operators \fB&&\fR and
472 \fB|\||\fR.
475 The \fBfor\fR statement must have all three expressions (\fIE\fR's).