We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've upgraded to Betty 1.6 and the new calculations feature doesn't work:
$ betty what is 40 plus 2 Betty: Running bc <<< 40+2 sh: 1: Syntax error: redirection unexpected
However, if I type the command that Betty is supposed to run, it works:
bc <<< 40+2 42
I'm using Ubuntu 14.04 / bash 4.3 / ruby 1.9.3.4.
The text was updated successfully, but these errors were encountered:
Correction of the issue pickhardt#121 where calculation would not wor…
27ca34a
…k because sh does not support <<<
I found the problem : Betty uses sh, not bash, and "<<<" is not supported by sh. It works fine after replacing with : echo 'expr' | bc
Sorry, something went wrong.
b194f1c
Should this issue still be open? It's working for me on 1.8. though it does not show what command it is running, just the answer.
No branches or pull requests
I've upgraded to Betty 1.6 and the new calculations feature doesn't work:
However, if I type the command that Betty is supposed to run, it works:
I'm using Ubuntu 14.04 / bash 4.3 / ruby 1.9.3.4.
The text was updated successfully, but these errors were encountered: