首页 > 系统服务 > 详细

Shell脚本(二)数学运算

时间:2017-07-22 23:04:41      阅读:253      评论:0      收藏:0      [点我收藏+]

直接上代码。

#!/bin/bash

no1=4
no2=5

echo "using let ..."
let result=no1+no2
echo "result is: ${result}"

let result++
echo "result after 1 increment is: ${result}"

let result+=6
echo "result after 6 increment is: ${result}"

echo "using []..."
result=$[ no1 + no2 ]
echo "result is: ${result}"

echo "using (())..."
result=$(( no1 + no2 + 1 ))
echo "result is: ${result}"

echo "using expr ..."
result=$( expr $no1 + $no2 + 2 )
echo "result is: ${result}"

echo "using \`\` ..."
result=`expr $no1 + $no2 + 3`
echo "result is: ${result}"

 

Shell脚本(二)数学运算

原文:http://www.cnblogs.com/gattaca/p/7222925.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!