curl 命令使用方法整理

curl是利用URL语法在命令行方式下工作的文件传输工具。它支持很多协议:FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE 以及 LDAP。curl同样支持HTTPS认证,HTTP POST方法, HTTP PUT方法, FTP上传, kerberos认证,HTTP上传,代理服务器, cookies, 用户名/密码认证, 下载文件断点续传,上载文件断点续传,,http代理服务器管道(proxy tunneling), 甚至它还支持IPv6, socks5代理服务器,,通过http代理服务器上传文件到FTP服务器等等,功能十分强大。

curl的用法为:curl [options] [URL...]

一、查看网页源码

curl www.sina.com

<html>
<head><title>301 Moved Permanently</title></head>
<body bgcolor="white">
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
</body>
</html>

如果要把这个网页保存下来,可以使用-o参数,这就相当于使用wget命令了。

curl -o [文件名] www.sina.com

 

二、自动跳转
有的网址是自动跳转的。使用-L参数,curl就会跳转到新的网址。

curl -L www.sina.com


键入上面的命令,结果就自动跳转为www.sina.com.cn

 

三、显示头信息
-i参数可以显示http response的头信息,连同网页代码一起。

curl -i www.sina.com

HTTP/1.0 301 Moved Permanently
Server: nginx
Date: Mon, 22 Apr 2013 06:24:55 GMT
Content-Type: text/html
Location: http://www.sina.com.cn/
Expires: Mon, 22 Apr 2013 06:26:55 GMT
Cache-Control: max-age=120
Age: 3
Content-Length: 178
X-Cache: HIT from nj75-165.sina.com.cn
Connection: close

<html>
<head><title>301 Moved Permanently</title></head>
<body bgcolor="white">
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
</body>
</html>

-I  参数则是只显示http response的头信息。

四、显示通信过程
-v参数可以显示一次http通信的整个过程,包括端口连接和http request头信息。

curl -v www.sina.com

* About to connect() to www.sina.com port 80 (#0)
*   Trying 202.102.75.164... connected
* Connected to www.sina.com (202.102.75.164) port 80 (#0)
> GET / HTTP/1.1
> User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.13.6.0 zlib/1.2.3 libidn/1.18 

libssh2/1.4.2
> Host: www.sina.com
> Accept: */*
> 
* HTTP 1.0, assume close after body
< HTTP/1.0 301 Moved Permanently
< Server: nginx
< Date: Mon, 22 Apr 2013 06:24:33 GMT
< Content-Type: text/html
< Location: http://www.sina.com.cn/
< Expires: Mon, 22 Apr 2013 06:26:33 GMT
< Cache-Control: max-age=120
< Age: 98
< Content-Length: 178
< X-Cache: HIT from nj75-164.sina.com.cn
< Connection: close
< 
<html>
<head><title>301 Moved Permanently</title></head>
<body bgcolor="white">
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
</body>
</html>
* Closing connection #0

下面的命令可以查看更详细的通信过程。

curl --trace output.txt www.sina.com

curl --trace-ascii output.txt www.sina.com

 

五、发送表单信息
发送表单信息有GET和POST两种方法。GET方法相对简单,只要把数据附在网址后面就行。

curl example.com/form.cgi?data=xxx

POST方法必须把数据和网址分开,curl就要用到--data参数。

curl --data "data=xxx" example.com/form.cgi

如果你的数据没有经过表单编码,还可以让curl为你编码,参数是--data-urlencode。

curl --data-urlencode "date=April 1" example.com/form.cgi

六、HTTP动词
curl默认的HTTP动词是GET,使用-X参数可以支持其他动词。

curl -X POST www.example.com
curl -X DELETE www.example.com


 

七、文件上传
假定文件上传的表单是下面这样:
  <form method="POST" enctype='multipart/form-data' action="upload.cgi">
    <input type=file name=upload>
    <input type=submit name=press value="OK">
  </form>
你可以用curl这样上传文件:
  

curl --form upload=@localfilename --form press=OK [URL]


八、Referer字段
有时你需要在http request头信息中,提供一个referer字段,表示你是从哪里跳转过来的。

curl --referer http://www.example.com http://www.example.com


九、User Agent字段
这个字段是用来表示客户端的设备信息。服务器有时会根据这个字段,针对不同设备,返回不同格式的网页,比如手机版

和桌面版。
iPhone4的User Agent是
  Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_0 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko)

Version/4.0.5 Mobile/8A293 Safari/6531.22.7
curl可以这样模拟:
  

curl --user-agent "[User Agent]" [URL]


十、cookie
使用--cookie参数,可以让curl发送cookie。
  

curl --cookie "name=xxx" www.example.com


至于具体的cookie的值,可以从http response头信息的Set-Cookie字段中得到。

十一、增加头信息
有时需要在http request之中,自行增加一个头信息。--header参数就可以起到这个作用。
  

curl --header "xxx: xxxxxx" http://example.com


十二、HTTP认证
有些网域需要HTTP认证,这时curl需要用到--user参数。
  

curl --user name:password example.com


curl是瑞典curl组织开发的,您可以访问: http://curl.haxx. se/
http://curl.haxx.se/docs/httpscripting.html

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值