我需要在另一个内部写,如果看起来像:
if(condition)
{
if(condition)
{
//do something
}
//do something
}
如何使用bash脚本语言编写它?
答案 0 :(得分:3)
使用if / then结构的条件测试可以嵌套。最终结果相当于使用&&复合比较运算符。
a=3
if [ "$a" -gt 0 ]
then
if [ "$a" -lt 5 ]
then
echo "The value of \"a\" lies somewhere between 0 and 5."
fi
fi
# Same result as:
if [ "$a" -gt 0 ] && [ "$a" -lt 5 ]
then
echo "The value of \"a\" lies somewhere between 0 and 5."
fi
答案 1 :(得分:1)