在Shell中可以使用下列方式來做整數(shù)的計算(+,-,*,/)
方式一:
linux:~ # A=1
linux:~ # B=2
linux:~ # C=$(($A+$B))
linux:~ # echo $C
3
方式二:
linux:~ # A=1
linux:~ # B=2
linux:~ # C=$[$A + $B]
linux:~ # echo $C
3
方式三:
linux:~ # A=1
linux:~ # B=2
linux:~ # C=`expr $A + $B`
linux:~ # echo $C
3
方式四:
linux:~ # A=1
linux:~ # B=2
linux:~ # let C=$A+$B
linux:~ # echo $C
3
方式五:
linux:~ # A=1
linux:~ # B=2
linux:~ # C=`echo "$A+$B" | bc`
linux:~ # echo $C
3
方式六:
linux:~ # A=1
linux:~ # B=2
linux:~ # awk 'BEGIN{C='"$A"'+'"$B"'; print C}' # "$A"外面再套一個單引號
3
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對腳本之家的支持。如果你想了解更多相關內(nèi)容請查看下面相關鏈接
您可能感興趣的文章:- Linux Shell在目錄下使用for循環(huán)結(jié)合if查找文件的巧用
- Shell腳本判斷用戶的輸入內(nèi)容
- Shell腳本中使用getopts處理多命令行選項
- Shell腳本從文件中逐行讀取內(nèi)容的幾種方法實例
- Shell腳本中管道的幾種使用實例講解
- Shell腳本用for循環(huán)遍歷參數(shù)的方法技巧
- Shell腳本中awk指令的用法
- Shell中字符串排序的幾種方法
- 一條命令讓你明白shell中read命令的常用參數(shù)
- Shell中的while循環(huán)幾種使用實例詳解