嗨,据我所知,在bash中,条件语句可以使用[]和&& (对于真实条件)或|| (对于错误条件)指定应根据条件执行的操作。
此外,动作列表可以包含多个命令,这些命令由分号(;)分隔。
例如,如下面的源代码所示。
[ ! $# == 2 ] && ( echo "Usage: $0 weight_in_killos length_in_centimeters"; exit)
但是,似乎在echo打印字符串后没有执行exit命令。
请仔细阅读以下源代码,让我知道问题所在。
#!/bin/bash
[ ! $# == 2 ] && ( echo "Usage: $0 weight_in_killos length_in_centimeters"; exit)
if [ ! $# == 2 ]; then
echo "Usage: $0 weight_in_killos length_in_centimeters"
exit
fi
weight=$1
height=$2
idealweight=$(($height-110))
echo $idealweight
if [ "$weight" \< "$idealweight" ]; then
echo "eat more"
elif [ "$weight" -eq "$idealweight" ]; then
echo "fit well"
else
echo "eat less"
fi
有趣的是,它执行第一个条件(缩短版本)和第二个条件(if语句)的两个回声。
我预计它只打印一条echo消息并退出,因为第一个echo后面跟着exit命令。
答案 0 :(得分:0)
这是另一种有条件地分组命令的方法:
test $# -ne 2 && {
echo "Usage: $0 weight_in_killos length_in_centimeters"
exit
}