shell比较两个整数的大小
时间: 2023-07-05 19:06:18 浏览: 97
比较两个数的大小
在 Shell 中,可以使用 test 命令或中括号语法来比较两个整数的大小。
下面是使用 test 命令比较两个整数的大小的示例:
```shell
#!/bin/bash
a=10
b=20
if test $a -gt $b; then
echo "a is greater than b"
else
echo "b is greater than a"
fi
```
或者使用中括号语法:
```shell
#!/bin/bash
a=10
b=20
if [ $a -gt $b ]; then
echo "a is greater than b"
else
echo "b is greater than a"
fi
```
在这些示例中,`-gt` 是 test 命令或中括号语法中用于比较两个整数的大小的操作符。
阅读全文