如何捕获 bash 中的反复无常的错误?

发布于 2024-11-02 15:36:58 字数 93 浏览 0 评论 0原文

如何在 bash 中获取 hg update 命令的结果并使用结果?

我对真/假值或类似的值感兴趣。我感兴趣的错误之一是未知修订。

How can I get the result of a hg update command in bash and use the results?

I'm interested in a true/false value or something similar. One of the errors I'm interested on is unknown revision.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时光无声 2024-11-09 15:36:58

首先,我在子 shell 中运行它并捕获输出和退出代码,

result=$(hg update 2>&1)
exit_code=$?

然后

case $exit_code in
0)
  success
  ;;
[1-5])
  failure x
  ;;
[6-9])
  failure y
  ;;
255)
  failure z
  ;;
*) # Default
  echo "it's a trap"
  ;;
esac

或者如果您对 true/false 状态运行感兴趣

result=$(hg update 2>&1) && echo "Success"

result=$(hg update 2>&1) || echo "Failure"

First off I run it in a subshell and catch the output and exit code

result=$(hg update 2>&1)
exit_code=$?

then

case $exit_code in
0)
  success
  ;;
[1-5])
  failure x
  ;;
[6-9])
  failure y
  ;;
255)
  failure z
  ;;
*) # Default
  echo "it's a trap"
  ;;
esac

Or you can if you are interested in true/false status run

result=$(hg update 2>&1) && echo "Success"

or

result=$(hg update 2>&1) || echo "Failure"
紧拥背影 2024-11-09 15:36:58

$? 能给你你想要的吗?运行 hg update 命令后尝试“echo $?”。通常,零表示“正常”,非零表示出现问题。

Does $? give you what you want? Try "echo $?" after running the hg update command. Typically, zero means "ok" and non-zero means something went wrong.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文