gpt4 book ai didi

linux - 如何在 Csh 中捕获错误或异常?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:51:18 29 4
gpt4 key购买 nike

我想知道是否有办法在发生这种情况时捕获异常并控制流程。例如运行这一行,我想知道是否发生了 shell 错误。

source /scripts/scriptThatWillFail.csh

最佳答案

退出/返回代码存储在 C shell 中的 status 变量中。

source /scripts/scriptThatWillFail.csh
if ($status != 0) then
echo failed
else
echo passed
endif

关于linux - 如何在 Csh 中捕获错误或异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31213467/

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