码迷,mamicode.com
首页 > 系统相关 > 详细

Shell脚本(二)数学运算

时间:2017-07-22 23:37:45      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:result   log   echo   []   脚本   ...   div   res   bash   

直接上代码。

#!/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脚本(二)数学运算

标签:result   log   echo   []   脚本   ...   div   res   bash   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!