gpt4 book ai didi

linux - 如何让 bash 将 undefined variable 视为错误?

转载 作者:IT王子 更新时间:2023-10-29 00:11:57 25 4
gpt4 key购买 nike

请注意:本站有很多关于如何测试单个 shell 变量的问题。这个问题是关于测试任何 undefined variable 的脚本。

您可以在 bash 中使用 undefined variable 而不会在执行时看到任何错误:

#!/bin/bash

echo ${UNDEF_FILE}
ls -l ${UNDEF_FILE}

exit 0

我发现这很容易出错。如果我想在大型脚本中更改变量的名称,或删除该变量,所有以前的陈旧引用都会导致脚本出错。有时这对调试来说并不明显,或者您发现时为时已晚。

为什么允许这样做?有什么方法可以标记 undefined variable 吗?

最佳答案

您可以使用:

set -u

在脚本开头使用 undefined variable 时抛出错误。

-u

Treat unset variables and parameters other than the special parameters "@" and "*" as an error when performing parameter expansion. If expansion is attempted on an unset variable or parameter, the shell prints an error message, and, if not interactive, exits with a non-zero status.

关于linux - 如何让 bash 将 undefined variable 视为错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41020844/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com