[20201109]bash shell特殊算術方式.txt
[20201109]bash shell特殊算術方式.txt
--//有時候工作需要寫bash shell指令碼,一般使用bash進行算術計算,我以前寫過一個連結:
--//http://blog.itpub.net/267265/viewspace-2286893/ =>[20181229]bash shell的算術運算 .txt
--//我忽略一種特殊情況,可以直接寫表示式,這樣更加簡單直觀。透過例子說明:
declare -i i
i=13+3*4
echo $i
$ declare -i i
$ i=13+3*4
$ echo $i
25
--//只要開始使用declare定義變數i是整形,就可以直接計算。
$ i=13 +3*4
-bash: +3*4: command not found
--//缺點不能有空格。
$ a=12
$ b=14
$ i=$a+$b
$ echo $i
26
--//補充一點使用typeset -i等同於declare -i.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2732892/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [20181229]bash shell的算術運算 .txt
- [20201109]here-doc(EOF) in bash.txt
- [20180930]bash shell &.txt
- [20210908]Reverse Shell with Bash.txt
- [20210913]bash shell $* and $@ 的區別.txt
- [20201116]bash shell IO重定向.txt
- [20181212]bash shell 字串 補零.txt字串
- [20231123]函式與bash shell呼叫.txt函式
- [20230314]nc reverse bash shell alias.txt
- [20230310]nc reverse bash shell問題.txt
- [20210324]bash shell value too great for base.txt
- [20201109]cluvfy comp scan [-verbose].txt
- [20191010]bash行計算器.txt
- [20230309]nc reverse bash shell or cmd.exe(windows).txtWindows
- [20210618]記錄bash shell執行的命令.txt
- [20210330]bash使用source or ..呼叫shell指令碼注意txt指令碼
- [20230428]bash實現xor計算.txt
- [20231023]生成bbed的執行指令碼(bash shell).txt指令碼
- Bash的特殊字元字元
- 『忘了再學』Shell基礎 — 9、Bash中的特殊符號(一)符號
- 『忘了再學』Shell基礎 — 10、Bash中的特殊符號(二)符號
- [20231109]bash shell快捷鍵alt+number的問題.txt
- [20231029]使用cygwin調式bash shell引出的問題.txt
- [20231102]除錯bash shell指令碼遇到的問題.txt除錯指令碼
- [20210906]沒有想到bash shell還可以這樣寫.txt
- [20210107]編寫bash shell指令碼遇到的問題.txt指令碼
- [20190126]從sqlplus執行結果返回bash shell變數.txtSQL變數
- shell Bash變數變數
- [20210318]bash test (( )) [[ ]].txt
- [20181203]bash here $.txt
- [20190929]bash使用bc計算的相關問題.txt
- linux shell特殊引數Linux
- [20211009]使用bash計算sql語句的sql_id.txtSQL
- [20191012]使用bash從sql_id計算hash_value.txtSQL
- [20201109]11.2.0.4增加欄位與預設值問題.txt
- 算術運算子裡的特殊運算子
- [20190312]bash IFS例子.txt
- Shell(Bash)學習· 總章