shell之数学运算
Posted mrwuzs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell之数学运算相关的知识,希望对你有一定的参考价值。
- let
#!/bin/bash
no1=1;
no2=5;
let result=no1+no2 ##不能留空格
echo $result
#自加
let no++
#自减
let no--
#简写
let no+=6 - (())
- []
- expr
- bc #小数和科学计算
以上是关于shell之数学运算的主要内容,如果未能解决你的问题,请参考以下文章
linux之Shell编程--Shell基本运算符之算数运算符和关系运算符实例演示