shell下求運算式值的方法

來源:互聯網
上載者:User

唉 沒學過shell 然後同事遇到問題 我找同學問的 是有必要學學的  本來也不複雜 不過文法太怪 實在搞不懂 呵呵

就寫了個簡單的指令碼

#!/bin/sh
number=1
max=3

while [ "$number" -le "$max" ]
do
  echo "this is $number cycle start ......"
  number=$number + 1
done

echo "over ..."

怎麼編都不過,錯在number=$number + 1這行,改了很多版本也不行

所以轉一篇如下(shell格式要求很死  比如while後【】要有空格  number後+兩邊要有空格  變數賦值=不能有空格)

1、expr用於計算運算式的值
expr expression1 操作符 expression2
操作符前必須加'\'用於轉義,並且操作符和兩個expression之間必須有空格
count=1
count=`expr $count + 1`   (這裡不是單引號,是數字鍵1旁邊的那個,⊙﹏⊙b啊)
echo $count

輸出為2

2、最好用$(())代替,效率更高
count=1
count=$(($count+1))
echo $count

3、也可以使用$[]
var=$[1+5]
echo $var  //6

count=1
var=$[$count+1]
echo $var

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.