[20210324]bash shell value too great for base.txt
[20210324]bash shell value too great for base.txt
--//編寫bash shell遇到的問題:
$ printf "%02x\n" $(( 08 +1 ))
-bash: 08: value too great for base (error token is "08")
--//前面有0實際上bash shell預設是八進位制,這樣0x8超過了8進位制的表示範圍,所以報錯:shell value too great for base;
--//解決方案:
--//指定其為10進位制即可,在結果前加上10#
$ printf "%02x\n" $(( 10#08 +1 ))
09
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2764610/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- shell Bash變數變數
- [20180930]bash shell &.txt
- Shell(Bash)學習· 總章
- [20210908]Reverse Shell with Bash.txt
- bash shell多執行緒方案執行緒
- [20210913]bash shell $* and $@ 的區別.txt
- Linux深入探索04-Bash shellLinux
- [20201116]bash shell IO重定向.txt
- bash shell 程式與磁碟資料
- [20181212]bash shell 字串 補零.txt字串
- shell程式設計–bash變數程式設計變數
- [20231123]函式與bash shell呼叫.txt函式
- bash shell 無法使用 perl 正則
- [20230314]nc reverse bash shell alias.txt
- [20230310]nc reverse bash shell問題.txt
- shell和bash指令碼命令學習指令碼
- Linux中bash shell環境變數Linux變數
- [20201109]bash shell特殊算術方式.txt
- ORA-12899: value too large for column ORG_NAME (actual: 145, maximum: 128)
- 執行shell指令碼報錯:-bash: ./test1.sh: /bin/bash^M: ...指令碼
- bash shell指令碼接受多個引數指令碼
- shell程式設計–bash變數介紹程式設計變數
- [20181229]bash shell的算術運算 .txt
- [20191012]使用bash從sql_id計算hash_value.txtSQL
- [20230309]nc reverse bash shell or cmd.exe(windows).txtWindows
- Linux的bash shell與man檢視手冊Linux
- bash shell實現2048小遊戲詳解遊戲
- [20210618]記錄bash shell執行的命令.txt
- [20210330]bash使用source or ..呼叫shell指令碼注意txt指令碼
- fish:Linux中比bash或zsh更好用的ShellLinux
- 俄式科幻小品《The Great Perhaps》
- [20231023]生成bbed的執行指令碼(bash shell).txt指令碼
- Bash Shell指令碼中的陣列使用例項指令碼陣列
- Cognitive Flow: The Psychology of Great Game DesigGAM
- [20231109]bash shell快捷鍵alt+number的問題.txt
- [20231029]使用cygwin調式bash shell引出的問題.txt
- [20231102]除錯bash shell指令碼遇到的問題.txt除錯指令碼
- Mac 更改shell(bash 改為zsh)以及附帶環境Mac