curl -w 支持的参数

最近想用curl获取到访问某网站的返回状态码,灵机一想,curl好像可以实现.命令如下:

curl -s -w "%{http_code}\n" -o /dev/null www.baidu.com

 

-w 也支持其他的选项,如想知道某网站的解析速度,用如下命令实现:
curl -o /dev/null -s -w %{time_connect}:%{time_namelookup}:%{time_total}  www.baidu.com

详细的curl -w支持选项见如下链接:
https://ec.haxx.se/usingcurl/usingcurl-verbose/usingcurl-writeout#available-write-out-variables

真香定律!
posted @ 2020-09-15 15:57  进击的pythoner  阅读(1668)  评论(0编辑  收藏  举报