shell 中的算術運算

來源:互聯網
上載者:User
  工作中經常會寫一些shell指令碼來完成任務,在編寫shell的過程中常常涉及一些算術運算,下面我就對經常用到的幾種算術 運算命令做簡單的總結。   常用的算術運算命令有 expr , bc,let,$(())
1.  let   let 命令是我在shell中用到最多的一個命令,它簡單易用,支援自加自減操作。我經常用它在for和while迴圈中實現 整數值的加一操作。   需要注意的一點是,我們知道shell中的變數需要加$符號的,但是在用到let命令的時候,變數前是不需要加$的
 [bazar@test /home/bazar]$a=5 [bazar@test /home/bazar]$let a=a+5 [bazar@test /home/bazar]$echo $a 10 [bazar@test /home/bazar]$let a++ [bazar@test /home/bazar]$echo $a 11 [bazar@test /home/bazar]$let a-- [bazar@test /home/bazar]$echo $a 10 [bazar@test /home/bazar]$let a+=3 [bazar@test /home/bazar]$echo $a 13 [bazar@test /home/bazar]$let a=a+0.5 -bash: let: a=a+0.5: syntax error: invalid arithmetic operator (error token is ".5") [bazar@test /home/bazar]$ 可以看到let是不支援浮點運算的,通過help let來看下let的詳細功能 
 id++, id-- variable post-increment, post-decrement ++id, --id variable pre-increment, pre-decrement -, + unary minus, plus !, ~ logical and bitwise negation ** exponentiation *, /, % multiplication, division, remainder +, - addition, subtraction <<, >> left and right bitwise shifts <=, >=, <, > comparison ==, != equality, inequality & bitwise AND ^ bitwise XOR | bitwise OR && logical AND || logical OR expr ? expr : expr conditional operator =, *=, /=, %=, +=, -=, <<=, >>=, &=, ^=, |= assignment 

通過help資訊可以看到,let除了支援整數的加減乘除,還支援邏輯運算和位操作等(又漲姿勢了:))。
2.  expr    這又是一個很常用的命令。   expr 也一般用於整數值的運算,如:
 [bazar@test /home/bazar]$expr 10 + 10 20 [bazar@test /home/bazar]$b=20 [bazar@test /home/bazar]$c=`expr $b + 5` [bazar@test /home/bazar]$echo $c 25 [bazar@test /home/bazar]$d=`expr $b \* 5 + 10`
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.