bc-gh

POSIX bc and dc calculator with GNU and BSD extensions

brewmacoslinux
Try with needOr install directly
Source

About

Implementation of Unix dc and POSIX bc with GNU and BSD extensions

Commands

bcdc

Examples

Perform basic arithmetic calculations$ echo '2 + 2' | bc
Calculate with decimal precision$ echo 'scale=2; 10 / 3' | bc
Use dc for reverse Polish notation calculations$ echo '2 3 + p' | dc