mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-27 11:43:37 +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
|
||
|
|