我可以只卷曲打印响应代码吗?

时间:2018-11-28 18:50:39

标签: http curl

我读了https://superuser.com/questions/272265/getting-curl-to-output-http-status-code。它提到了

curl -i 

将打印HTTP响应代码。是否可以在HTTP响应代码中仅 卷曲打印?是否有通用的方法来获取任何类型的请求(例如GET / POST / etc)的HTTP状态代码?

我在Mac OS High Sierra上使用curl 7.54.0。

感谢阅读。

2 个答案:

答案 0 :(得分:1)

curl -s -I http://example.org | grep HTTP/ | awk {'print $2'}

输出:200

答案 1 :(得分:0)

这对我有用:

$  curl -s -w "%{http_code}\n" http://google.com/ -o /dev/null