fish-shell/share/functions/math.fish
2017-07-13 14:12:47 -07:00

45 lines
1.4 KiB
Fish

function math --description "Perform math calculations in bc"
set -l options 'h/help' 's/scale='
argparse -n math --min-args=1 $options -- $argv
or return
if set -q _flag_help
__fish_print_help math
return 0
end
set -l scale 0 # default is integer arithmetic
if set -q _flag_scale
set scale $_flag_scale
if not string match -q -r '^\d+$' "$scale"
printf (_ "%s: Expected an integer to follow --scale") math >&2
return 2 # missing argument is an error
end
end
# Set BC_LINE_LENGTH to a ridiculously high number so it only uses one line for most results.
# We can't use 0 since some systems (including macOS) use an ancient bc that doesn't support it.
# We also can't count on this being recognized since some BSD systems don't recognize this env
# var at all and limit the line length to 70.
set -lx BC_LINE_LENGTH 500
set -l out (echo "scale=$scale; $argv" | bc)
if set -q out[2]
set out (string join '' (string replace \\ '' $out))
end
switch "$out"
case ''
# No output indicates an error occurred.
return 3
case 0
# For historical reasons a zero result translates to a failure status.
echo 0
return 1
case '*'
# For historical reasons a non-zero result translates to a success status.
echo $out
return 0
end
end