📜  bash if not - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:00.256000             🧑  作者: Mango

代码示例2
if [[a != b]]; then
    echo "a is not b"
else
    echo "a is the same as b"
fi