gpt4 book ai didi

bash - bash 中 ${foo :? } 中的 "?"是什么意思?

转载 作者:行者123 更新时间:2023-11-29 09:23:19 25 4
gpt4 key购买 nike

我正在执行一些 bash 脚本,我发现代码对许多变量使用了以下结构:

ID1="{ID2:?}"

. ${PATH1:?}/file1

有人可以帮我理解 ? 的作用吗?

最佳答案

在此上下文中,如果参数未设置或为空,则会引发错误。通常,您会在 ? 之后看到一条自定义错误消息,但如果没有,则会打印一条通用错误消息。

$ unset id2
$ id1=${id2:?}
bash: id2: parameter null or not set
$ id1=${id2:?nope}
bash: id2: nope
$ id2=9
$ id1=${id2:?}
$ echo $id1
9

关于bash - bash 中 ${foo :? } 中的 "?"是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36824789/

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