Linux系列:Shell脚本中boolean类型的使用方法
Posted NIO4444
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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未定义、为空等情况
以上是关于Linux系列:Shell脚本中boolean类型的使用方法的主要内容,如果未能解决你的问题,请参考以下文章
Linux系列教程(二十)——Linux的shell概述以及如何执行脚本
Linux系列教程(二十)——Linux的shell概述以及如何执行脚本