当前位置:网站首页>The base value is too large (the error is marked as "08") [duplicate] - value too great for base (error token is'08') [duplicate]
The base value is too large (the error is marked as "08") [duplicate] - value too great for base (error token is'08') [duplicate]
2022-07-03 02:51:00 【French red wine sweet】
problem :
Here my problem is to find the difference of using single bracket [ ] and double brackets [[ ]] in if statement. My problem here is to find out where if Use single parentheses in statements [ ] And double brackets [[ ]] The difference between .
#!/bin/bashvara=08;varb=10;## single bracket in if statment is working.if [ $vara -lt $varb ]; thenecho "yes";elseecho "no";fi## double brackets in if statment is not working; throwing an error like below.## [[: 08: value too great for base (error token is "08")if [[ $vara -lt $varb ]]; thenecho "yes";elseecho "no";fiSolution :
Reference resources : https://stackoom.com/en/question/1fxmf边栏推荐
- [fluent] futurebuilder asynchronous programming (futurebuilder construction method | asyncsnapshot asynchronous calculation)
- Deep Reinforcement Learning for Intelligent Transportation Systems: A Survey 论文阅读笔记
- Principle and application of database
- Use optimization | points that can be optimized in recyclerview
- Three.js本地环境搭建
- tensor中的append应该如何实现
- Check log4j problems using stain analysis
- How to return ordered keys after counter counts the quantity
- I2C subsystem (IV): I2C debug
- The process of connecting MySQL with docker
猜你喜欢
随机推荐
Strategy application of Dameng database
Add MDF database file to SQL Server database, and the error is reported
Source code analysis | resource loading resources
What does it mean when lambda is not entered?
where 1=1 是什么意思
Segmentation fault occurs during VFORK execution
Deep reinforcement learning for intelligent transportation systems: a survey paper reading notes
JS finds all the parent nodes or child nodes under a node according to the tree structure
[Hcia]No.15 Vlan间通信
Gbase 8C system table PG_ aggregate
Kubernetes family container housekeeper pod online Q & A?
Why choose a frame? What frame to choose
定了,就选它
当lambda没有输入时,是何含义?
Gbase 8C system table PG_ amproc
Deep learning: multi-layer perceptron and XOR problem (pytoch Implementation)
Wechat - developed by wechat official account Net core access
内存泄漏工具VLD安装及使用
Add automatic model generation function to hade
tensor中的append应该如何实现







