shell基础03 数学运算
Posted Hermioner
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell基础03 数学运算相关的知识,希望对你有一定的参考价值。
shell中的数学运算有些局限。主要分为了以下几种类型:
1. 方括号-------只支持整数运算
[Hermioner@localhost Documents]$ var1=$[1+5]
[Hermioner@localhost Documents]$ echo $var1
6
[Hermioner@localhost Documents]$ var2=$[$var1*2]
[Hermioner@localhost Documents]$ echo $var2
12
[Hermioner@localhost Documents]$ var1=100
[Hermioner@localhost Documents]$ var2=45
[Hermioner@localhost Documents]$ var3=$[$var1/$var2]
[Hermioner@localhost Documents]$ echo $var3
2
2. 浮点解决方案
直接使用内建的bash计算器,叫做bc。它支持多种类型的计算
浮点计算会设计到精度的问题,可以通过设置变量scale的值,让它满足我们想要的精度。比如scale=4,意思就是小数点后面保留4位输出
bc可以处理别的数据类型,用时参考。
参考文献:
Linux命令行与shell脚本编程大全(第3版)[美] 布鲁姆(Richard Blum),布雷斯纳汉(Christine Bresnahan) 著,门佳,武海峰 译
以上是关于shell基础03 数学运算的主要内容,如果未能解决你的问题,请参考以下文章