Shell编程之if简单判断两个数字大小
时间: 2024-03-20 11:45:21 浏览: 189
shell浅谈之二 运算符和if条件判断
如果你想在Shell中比较两个数字的大小,可以使用if语句和test命令来实现。
以下是一个比较两个数字大小的示例代码:
```bash
#!/bin/bash
a=10
b=20
if [ $a -gt $b ]
then
echo "$a is greater than $b"
else
echo "$a is less than or equal to $b"
fi
```
在上面的示例中,我们使用了test命令中的-gt选项来比较$a和$b的大小。如果$a大于$b,则打印"$a is greater than $b",否则打印"$a is less than or equal to $b"。
注意,if语句的结尾需要以fi作为结束。
阅读全文