shell 中的 if-elif-else 注意点

1,比较符号不能用  > < =

而要用

大于 -gt (greater than)
小于 -lt (less than)
大于或等于 -ge (greater than or equal)
小于或等于 -le (less than or equal)
不相等 -ne (not equal)

2,else  后面是没有then 的

3,if [ ‘a‘ -gt 1 ];then  if后面的条件表达式要放在[] 中 并且两边要有空格。

shell 中的 if-elif-else 注意点

上一篇:linux监控命令


下一篇:[Linux系统安装] Redhat Enterprise Linux 8.2 在虚拟机中的安装过程记录(原创,转载请说明出处)