mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-23 23:34:11 +08:00
16 lines
201 B
Fish
16 lines
201 B
Fish
|
|
function math -d (N_ "Perform math calculations in bc")
|
|
if count $argv >/dev/null
|
|
set -l out (echo $argv|bc)
|
|
echo $out
|
|
switch $out
|
|
case 0
|
|
return 1
|
|
end
|
|
return 0
|
|
end
|
|
return 2
|
|
|
|
end
|
|
|