dc: example fails 'dc 8 8 * 2 2 + / p' -> 16 The '*' needs to be escaped on the commandline as: 'dc 8 8 \* 2 2 + / p' -> 16 or 'dc 8 8 mul 2 2 + / p' -> 16 BusyBox v1.19.2 (2011-09-22 22:34:25 PDT) multi-call binary. Usage: dc EXPRESSION... Tiny RPN calculator. Operations: +, add, -, sub, *, mul, /, div, %, mod, **, exp, and, or, not, eor, p - print top of the stack (without popping), f - print entire stack, o - pop the value and set output radix (must be 10, 16, 8 or 2). Examples: 'dc 2 2 add p' -> 4, 'dc 8 8 * 2 2 + / p' -> 16
Fixed in git.