这篇文章上次修改于 1831 天前,可能其部分内容已经发生变化,如有疑问可询问作者。 > bash中判断curl返回状态码 代码如下: ```bash response=$( curl https://greenhtml.com/asdf/rer.html \ --write-out %{http_code} \ --silent \ --output /dev/null \ ) echo $response if test "$response" -ge 200 && test "$response" -le 299 then echo 'check point success' else echo 'check point fail' exit 1 fi ```
没有评论