系统相关
首页 > 系统相关> > Linux_shell_整数二元比较操作符

Linux_shell_整数二元比较操作符

作者:互联网

[],test中使用 (()),[[]中使用 说明
-eq ==或=  equal
-ne != not equal
-gt > greater than
-ge >= greater equal
-lt < less than
-le <= less equal
  1. 通过英语来记忆会好很多
  2. 比较符号的两端一定要有空格  [ 3 > 4 ]
  3. [[]] 是 test 的拓展命令,更复杂。除了要用到正则表达式的时候,否则不建议使用。

标签:shell,greater,less,使用,equal,操作符,Linux,test,than
来源: https://www.cnblogs.com/didiao-xiaoxuan/p/14918166.html