1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 18:55:24 +02:00
tldr/pages/common/bc.md

33 lines
771 B
Markdown

# bc
> An arbitrary precision calculator language.
> See also: `dc`, `qalc`.
> More information: <https://manned.org/bc>.
- Start an interactive session:
`bc`
- Start an interactive session with the standard math library enabled:
`bc {{[-i|--interactive]}} {{[-l|--mathlib]}}`
- Calculate an expression:
`echo '{{5 / 3}}' | bc`
- Execute a script:
`bc {{path/to/script.bc}}`
- Calculate an expression with the specified scale:
`echo 'scale = {{10}}; {{5 / 3}}' | bc`
- Calculate a sine/cosine/arctangent/natural logarithm/exponential function using `mathlib`:
`echo '{{s|c|a|l|e}}({{1}})' | bc {{[-l|--mathlib]}}`
- Execute an inline factorial script:
`echo "define factorial(n) { if (n <= 1) return 1; return n*factorial(n-1); }; factorial({{10}})" | bc`