Shell 整数比较符号 发表于 2019-11-19 更新于 2020-02-03 分类于 Linux 本文字数: 252 阅读时长 ≈ 1 分钟 some word here Shell 脚本中大于,大于等于,小于,小于等于、不等于的表示方法 解释记住性对应的英文很容易记住 大于 -gt (greater than) 小于 -lt (less than) 大于或等于 -ge (greater than or equal) 小于或等于 -le (less than or equal) 不相等 -ne (not equal) 相等 -eq (equal) 使用方法 if ["$a" -eq "$b" ] 参考链接 Shell 整数比较,以及各种符号 shell脚本中大于,大于等于,小于,小于等于、不等于的表示方法