mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-25 20:33:08 +00:00
math: Join lines manually
This is an issue with 15-year old versions of bc that don't support BC_LINE_LENGTH. Closes #2548
This commit is contained in:
parent
5db811253e
commit
3e0ff6db2a
1 changed files with 4 additions and 3 deletions
|
@ -7,9 +7,10 @@ function math --description "Perform math calculations in bc"
|
|||
return 0
|
||||
end
|
||||
|
||||
set -lx BC_LINE_LENGTH 0
|
||||
set -l out (echo $argv | bc)
|
||||
test -z "$out"; and return 1
|
||||
# Stitch lines together manually
|
||||
# we can't rely on BC_LINE_LENGTH because some systems don't have a bc version "new" enough
|
||||
set -l out (echo $argv | bc | string replace -r '\\\\$' '' | string join '')
|
||||
test -z "$out"; and return 1
|
||||
echo $out
|
||||
switch $out
|
||||
case 0
|
||||
|
|
Loading…
Reference in a new issue