有没有办法做这样的事情
int a = (b == 5) ? c : d;
使用重击?
三元运算符? :只是if/else
? :
if/else
case "$b" in 5) a=$c ;; *) a=$d ;; esac
要么
[[ $b = 5 ]] && a="$c" || a="$d"