Bash shell的算术运算有四种方式:1:使用 expr 外部程式
加法 r=`expr 4 + 5`
echo $r注意! '4' '+' '5' 这三者之间要有空白r=`expr 4 * 5` #错误乘法 r=`expr 4 \*5`2:使用 $(( ))r=$(( 4 + 5 ))
echo $r3:使用 $[ ]
r=$[ 4 + 5 ]
echo $r乘法
r=`expr 4 \* 5` r=$(( 4 * 5 ))r=$[ 4 * 5 ]echo $r除法
r=`expr 40 / 5` r=$(( 40 / 5 ))r=$[ 40 / 5 ]echo $r减法
r=`expr 40 - 5` r=$(( 40 - 5 ))r=$[ 40 - 5 ]echo $r求余数
r=$[ 100 % 43 ]echo $r乘幂 (如 2 的 3次方)
r=$(( 2 ** 3 ))r=$[ 2 ** 3 ]echo $r注:expr 沒有乘幂4:使用let 命令加法:
n=10let n=n+1echo $n #n=11乘法:
let m=n*10echo $m除法:
let r=m/10echo $r 求余数:let r=m%7echo $r 乘冪:let r=m**2echo $r虽然Bash shell 有四种算术运算方法,但并不是每一种都是跨平台的,建议使用expr。另外,我们在 script 中经常有加1操作,以下四法皆可:m=$[ m + 1]m=`expr $m + 1`m=$(($m + 1))let m=m+1实
#!/bin/bash#FileName:sh04.sh#History:20-11-2013#Function:It will show you tow numbers cross.PATH=/bin/export PATHecho -e "\n You SHOULD input tow numbers ,I will cross them._"read -p "First Number:_"firstnuread -p "Second Number:_"secondnutotal=$(($firstnu * $secondnu))total_1=$(($firstnu * $secondnu))total_2=$(($firstnu / $secondnu))total_3=$(($firstnu + $secondnu))total_4=$(($firstnu - $secondnu))echo -e "\n The score of $firstnu x $secondnu = $total_1\n"echo -e "\n The score of $firstnu / $secondnu = $total_2\n"echo -e "\n The score of $firstnu + $secondnu = $total_3\n"echo -e "\n The score of $firstnu - $secondnu = $total_4\n"测试:$sh test.sh-e You SHOULD input tow numbers ,I will cross them._First Number:_6Second Number:_4-e The score of 6 x 4 = 24-e The score of 6 / 4 = 1-e The score of 6 + 4 = 10-e The score of 6 - 4 = 2