Bash
true、false、および:コマンド
サーチ…
構文
- true、: - 常に終了コードとして0を返します。
- false - 常に終了コードとして1を返します。
無限ループ
while true; do
echo ok
done
または
while :; do
echo ok
done
または
until false; do
echo ok
done
関数戻り値
function positive() {
return 0
}
function negative() {
return 1
}
いつも/決して実行されないコード
if true; then
echo Always executed
fi
if false; then
echo Never executed
fi
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow