clac

Stack-based calculator using postfix notation for command-line arithmetic

brewmacoslinux
Try with needOr install directly
Source

About

Command-line, stack-based calculator with postfix notation

Commands

clac

Examples

Basic arithmetic: add 5 and 3$ clac 5 3 +
Multiple operations: calculate (10 + 5) * 2$ clac 10 5 + 2 *
Chain calculations: 100 divided by 4, then multiply by 3$ clac 100 4 / 3 *