1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-17 14:35:50 +02:00
tldr/pages.pt_BR/osx/bc.md

30 lines
650 B
Markdown
Raw Normal View History

2022-07-16 23:14:10 -03:00
# bc
> Linguagem e calculadora com precisão arbitrária.
> Veja também: `dc`.
> Mais informações: <https://keith.github.io/xcode-man-pages/bc.1.html>.
2022-07-16 23:14:10 -03:00
- Inicia uma sessão interativa:
2022-07-16 23:14:10 -03:00
`bc`
- Inicia uma sessão interativa com a biblioteca matemática padrão habilitada:
2022-07-16 23:14:10 -03:00
`bc --mathlib`
- Calcula uma expressão:
2022-07-16 23:14:10 -03:00
`bc --expression '{{5 / 3}}'`
2022-07-16 23:14:10 -03:00
- Executa um script:
2022-07-16 23:14:10 -03:00
`bc {{caminho/para/script.bc}}`
- Calcula uma expressão com a escala especificada:
2022-07-16 23:14:10 -03:00
`bc --expression '{{scale = 10; 5 / 3}}'`
2022-07-16 23:14:10 -03:00
- Calcula uma função sine/cosine/arctangent/natural logarithm/exponential usando `mathlib`:
2022-07-16 23:14:10 -03:00
`bc --mathlib --expression '{{s|c|a|l|e}}({{1}})'`