f2ccc22531
defined in Zim. Instead of creating an additional `is-true() { }` function scope.
3 lines
182 B
Text
3 lines
182 B
Text
# Checks a boolean variable for "true".
|
|
# Case insensitive: "1", "y", "yes", "t", "true", "o", and "on".
|
|
[[ -n "$1" && "$1" == (1|[Yy]([Ee][Ss]|)|[Tt]([Rr][Uu][Ee]|)|[Oo]([Nn]|)) ]]
|