2007-01-16 09:29:18 +08:00
|
|
|
function math --description "Perform math calculations in bc"
|
2016-05-03 11:53:48 +08:00
|
|
|
set -l scale 0 # default is integer arithmetic
|
|
|
|
|
|
|
|
if set -q argv[1]
|
|
|
|
switch $argv[1]
|
|
|
|
case '-s*' # user wants to specify the scale of the output
|
|
|
|
set scale (string replace -- '-s' '' $argv[1])
|
|
|
|
if not string match -q -r '^\d+$' "$scale"
|
|
|
|
echo 'Expected an integer to follow -s' >&2
|
|
|
|
return 2 # missing argument is an error
|
|
|
|
end
|
|
|
|
set -e argv[1]
|
|
|
|
|
|
|
|
case -h --h --he --hel --help
|
|
|
|
__fish_print_help math
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if not set -q argv[1]
|
|
|
|
return 2 # no arguments is an error
|
|
|
|
end
|
|
|
|
|
2016-12-29 22:13:48 +08:00
|
|
|
# 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.
|
2017-01-09 10:31:55 +08:00
|
|
|
# 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
|
2016-12-29 22:13:48 +08:00
|
|
|
set -l out (echo "scale=$scale; $argv" | bc)
|
2017-01-09 10:31:55 +08:00
|
|
|
if set -q out[2]
|
|
|
|
set out (string join '' (string replace \\ '' $out))
|
|
|
|
end
|
2016-05-03 11:53:48 +08:00
|
|
|
switch "$out"
|
|
|
|
case ''
|
|
|
|
# No output indicates an error occurred.
|
|
|
|
return 3
|
2006-11-18 00:24:38 +08:00
|
|
|
|
2016-05-03 11:53:48 +08:00
|
|
|
case 0
|
|
|
|
# For historical reasons a zero result translates to a failure status.
|
|
|
|
echo 0
|
|
|
|
return 1
|
2010-09-18 10:18:26 +08:00
|
|
|
|
2016-05-03 11:53:48 +08:00
|
|
|
case '*'
|
|
|
|
# For historical reasons a non-zero result translates to a success status.
|
|
|
|
echo $out
|
|
|
|
return 0
|
|
|
|
end
|
2006-09-05 00:00:23 +08:00
|
|
|
end
|