curl命令使用详解

对于喜欢使用命令行的程序员来说,curl是一个利器。它是我们用来和服务器进行数据交换的工具,支持http、https、ftp、ldap等多种常用协议。

信息输出

采用-w参数,变量指定方式为%{variable_name},常用参数如下

time_total  "The total time, in seconds, that the full operation lasted

请求头

采用-H参数 ,官方解释(Http) Extra header to include in the request when sending Http to a server。注:可以指定任意数量的请求头。

# 列出常用demo
curl -H "Host:" #指定Hostname

你可能感兴趣的:(curl命令使用详解)