bc—processes precision arithmetic

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.

Example A.7.
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

  1. 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.

  2. The number base is two. The number is converted to binary (ATT only).

Get Linux Shells by Example now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.