gpt4 book ai didi

linux - 如何知道连接被拒绝抛出了 curl

转载 作者:太空狗 更新时间:2023-10-29 11:04:15 25 4
gpt4 key购买 nike

在 shell 脚本中,我必须通过 shell 脚本中的 curl 命令调用一些服务作为 url。在这种情况下,如果服务未运行,则 curl 表示连接被拒绝,我如何获取此异常并调用在另一台机器上运行的服务。

最佳答案

您可以检查 curl 的退出状态。例如:

curl -I -A "Chrome" -L "http://localhost:8080"
curl: (7) Failed connect to localhost:8080; Connection refused
[[ $? -eq 7 ]] && curl -I -A "Chrome" -L "http://localhost:9090"

关于linux - 如何知道连接被拒绝抛出了 curl ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28210294/

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