1

我在搞乱 bash true/false,我注意到一些非标准的东西:

$ if $varible_i_have_never_set_before; then echo yes; fi
yes

Bash 空变量似乎评估为真。通常未初始化的布尔值本质上是错误的,至少在大多数现代编程语言中是这样。对此有很好的解释吗?除了字符串比较之外,有什么方法可以获得所需的功能吗?

4

2 回答 2

5

你误解了什么if。它不检查参数的内容,它检查命令的返回值。由于变量中没有值,因此没有运行任何内容。而且,看起来很奇怪,这个没有运行的东西的返回值为 0,这if被认为是真的。

于 2013-08-20T14:57:10.670 回答
0

我想像调用命令的内部 Bash 函数一样。

int call_command(char * command, char ** args, int argc)
{
    int r = 0;  ## default, should actually be just u8.
    char * external_path = 0;
    if (command) {
        if (is_function(command)) {
            r = call_function(command, args, argc);
        }
        else if (is_builtin(command)) {
            r = call_builtin(command, args, argc);
        }
        else if ((external_path = check_if_external_command_and_get_absolute_path(command))) {
            r = call_external(external_path, args, argc);
        }
        else {
            printf("bash: %s: command not found\n", command);
            r = 127;
        }
    }
    return r;
}
于 2013-08-20T15:19:53.803 回答