前端之家收集整理的这篇文章主要介绍了
shell – Curl返回http状态代码和响应,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用curl来
获取http标头以查找http状态
代码并返回响应。我用命令
获取http标头
curl -I http://localhost
要获得响应,我使用命令
curl http://localhost
一旦使用-I标志,我只获得标题,响应不再存在。有没有办法在一个命令中同时获取http响应和headers / http状态代码?
我能够通过查看指定使用的curl doc获得
解决方案 –
输出将
输出输出到stdout。
curl -o - http://localhost
要获得只有http返回码的响应,我可以这么做
curl -o /dev/null -s -w "%{http_code}\n" http://localhost
原文链接:https://www.f2er.com/bash/387238.html