gpt4 book ai didi

bash - 在 bash 中使用 "exit ${?}"是否正确?

转载 作者:行者123 更新时间:2023-12-01 15:35:25 24 4
gpt4 key购买 nike

假设我编写了如下代码:

if [ ${?} -ne 0 ]; then 
exit ${?}

这能正常工作吗?这是正确的“语法方面”吗?

最佳答案

if 语句中的 [ 命令将在检查后设置 $?。您需要在测试前保存原始退出状态。

some_command
es=$?
if [ "$es" -ne 0 ]; then
exit "$es"
fi

关于bash - 在 bash 中使用 "exit ${?}"是否正确?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60637423/

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