May 2000
Beginner
761 pages
18h 20m
English
bc [ -lwsqv ] [long-options] [ file … ]
bc is an interactive processor for a language that resembles C but provides unlimited precision arithmetic. It takes input from any files given, then reads the standard input.
1 bc << EOF scale=3 4.5 + 5.6 / 3 EOF Output : 6.366 -------------------------- 2 bc ibase=2 5 101 (Output) 20 10100 (Output ^D |
Explanation
This is a here document. From the first EOF to the last EOF, input is given to the bc command. The scale specifies the number of digits to the right of the decimal point. The result of the calculation is displayed on the screen.
The number base is two. The number is converted to binary (ATT only).
Read now
Unlock full access