Argghh:
$ echo 2 4 | bc (standard_in) 1: parse error $ echo $? 0
Why on earth would an otherwise perfectly reasonable program succeed when it recognizes a parse error? Clearly, I cannot use bc to evaluate an expression. Personally, I like dc, but my users do not want reverse polish. Given an arithmetic expression of the form that bc recognizes, is there a reasonable program for evaluating the result? Or is there a way to make bc reasonable? (Here, "reasonable" means that it fails when the input is bogus.)