6
Bashの単一角括弧と二重角括弧の違い
私は約bashの例を読んでifいますが、いくつかの例は単一の角括弧で書かれています: if [ -f $param ] then #... fi 角かっこが二重になっているもの: if [[ $? -ne 0 ]] then start looking for errors in yourlog fi 違いはなんですか?
161
bash
if-statement