Linux系列(Shell脚本中boolean类型的使用方法)

千磨万击还坚劲,任尔东西南北风。这篇文章主要讲述Linux系列:Shell脚本中boolean类型的使用方法相关的知识,希望能为你提供帮助。
【Linux系列(Shell脚本中boolean类型的使用方法)】目录
??合理的写法??
??有坑的写法??
合理的写法

nio4444=true
if [ "$nio4444" = true ]; then
if [ "$nio4444" = "true" ]; then
if [[ "$nio4444" = true ]]; then
if [[ "$nio4444" = "true" ]]; then
if [[ "$nio4444" == true ]]; then
if [[ "$nio4444" == "true" ]]; then
if test "$nio4444" = true; then
if test "$nio4444" = "true"; then

有坑的写法
f $nio4444; then
echo true!
fi


需要考虑nio4444未定义、为空等情况




    推荐阅读