Bootstrap

Bash: 创建返回布尔类型值的函数

场景描述


在写 Shell 脚本的时候,有时候会遇到比较复杂的逻辑判断,只有当这些的复杂的逻辑判断返回 true 或 false 时才执行某些操作,这时如果把这些复杂的逻辑判断直接写在 if 后面,会显得比较乱,可读性很差,而且后期不容易维护。

解决方法


对于上面描述的场景,我们可以把复杂的逻辑判断写到一个函数里,根据这些复杂逻辑判断的结果,我们希望这个函数能够返回 true 或 false。

但是,Bash 中并没有布尔类型的值,参考 bash 的 man 手册,函数中的 return 只能返回一个数值:

return [n]

       ...

       The return status is non-zero if return is supplied a non-numeric argument, or is used outside  a function  and  not  during execution of a script by . or source.

       ...

man bash

不过,在 Shell 中,一个命令执行是否成功可以用它的 exit code 来判断,0 表示成功, 非 0 值来表示失败:

For  the shell's purposes, a command which exits with a zero exit status has succeeded.  An exit status of zero indicates success.  A non-zero exit status indic

;