**已关闭。**此问题为not reproducible or was caused by typos。目前不接受回答。
这个问题是由错字或无法再重现的问题引起的。虽然类似的问题在这里可能是on-topic,但这个问题的解决方式不太可能帮助未来的读者。
23天前关闭
Improve this question
a=10
b=20
c=30
if [[ $a -gt $b && $a -gt $c ]]
then
echo "A is the greater number"
if [[ $b -gt $a && $b -gt $c ]]
then
echo "B is the greater number"
else
echo "C is the greate number"
fi
我试着做dos2unix化,添加另一个'fi',但仍然抛出相同的错误代码
Ed Morton编辑:这是你的代码,有常见的缩进:
a=10
b=20
c=30
if [[ $a -gt $b && $a -gt $c ]]
then
echo "A is the greater number"
if [[ $b -gt $a && $b -gt $c ]]
then
echo "B is the greater number"
else
echo "C is the greate number"
fi
型
我希望如果您以这种方式格式化代码,问题就不再是个谜了。
2条答案
按热度按时间j0pj023g1#
您有两个
if
语句,但只有一个fi
。请尝试在第二种情况下使用elif
:字符串
ghhaqwfi2#
更好的选择是将测试逻辑运算符拆分到括号外.
下面是你的代码的另一个实现的例子:
字符串