@TOC
1.CURL介绍
CURL,全称Command Line URL Viewer,是一个Linux命令行工具,能从服务器下载数据,也能往服务器上发送数据,支持多种协议,支持的协议有:DICT,FILE,FTP,FTPS,GOPHER,HTTP,HTTPS,IMAP,IMAPS,LDAP,LDAPS,POP3,POP3S,RTMP,RTSP,SCP,SFTP,SMB,SMBS,SMTP,SMTPS,TELNET和TFTP。从CURL支持的协议就可以看出,CURL命令非常强大。
2.CURL 命令用法
2.1 curl url
$
curl www.baidu.com
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
2.2 curl -o/-O filename url
$
curl -o baidu.html www.baidu.com
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 2381 100 2381 0 0 34934 0 --:--:-- --:--:-- --:--:-- 35537
$
curl -o 1.jpg http://ocs628urt.bkt.clouddn.com/table_1.1.png
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 126k 100 126k 0 0 161k 0 --:--:-- --:--:-- --:--:-- 161k
$
curl -O http://ocs628urt.bkt.clouddn.com/table_1.1.png
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 126k 100 126k 0 0 132k 0 --:--:-- --:--:-- --:--:-- 132k
$
curl -O http://ocs628urt.bkt.clouddn.com/table_1.1.png -O http://ocs628urt.bkt.clouddn.com/table_java_2.png
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 126k 100 126k 0 0 402k 0 --:--:-- --:--:-- --:--:-- 402k
100 153k 100 153k 0 0 33822 0 0:00:04 0:00:04 --:--:-- 42510
2.3 curl -i/-I url
$
curl -i www.baidu.com
HTTP/1.1 200 OK
Server: bfe/1.0.8.18
Date: Wed, 02 Nov 2016 09:36:25 GMT
Content-Type: text/html
Content-Length: 2381
Last-Modified: Mon, 25 Jul 2016 11:11:28 GMT
Connection: Keep-Alive
ETag:
"5795f3e0-94d"
Cache-Control: private, no-cache, no-store, proxy-revalidate, no-transform
Pragma: no-cache
Set-Cookie: BDORZ
=27315
; max-age
=86400
; domain
=.baidu.com
; path
=/
Accept-Ranges: bytes
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
$
curl -I www.baidu.com
HTTP/1.1 200 OK
Server: bfe/1.0.8.18
Date: Wed, 02 Nov 2016 09:38:06 GMT
Content-Type: text/html
Content-Length: 277
Last-Modified: Mon, 13 Jun 2016 02:50:00 GMT
Connection: Keep-Alive
ETag:
"575e1f58-115"
Cache-Control: private, no-cache, no-store, proxy-revalidate, no-transform
Pragma: no-cache
Accept-Ranges: bytes
备注:
HTTP/1.1 200 OK,响应状态行
HTTP/1.1,访问采用的协议为HTTP,版本为1.1
200 OK,HTTP状态码,表示文档正确返回
Server,服务器应用程序软件的名称和版本
Date,服务器产生响应的日期
Content-Type,响应实体的主题是一个html文本
Content-Length,响应实体的主题包含了277字节的数据
Last-Modified,资源的最后修改日期时间
Connection,连接方式,close或keep-alive
ETag,资源的匹配信息
Cache-Control,控制缓存的行为
Pragma,报文指令
Accept-Ranges,是否接受字节范围请求
2.4 curl -v url/curl --trace filename url
$
curl -v www.baidu.com
* Rebuilt URL to: www.baidu.com/
* Trying 61.135.169.121
...
* Connected to www.baidu.com
(61.135.169.121
) port 80
(
> GET / HTTP/1.1
> Host: www.baidu.com
> User-Agent: curl/7.43.0
> Accept: */*
>
< HTTP/1.1 200 OK
< Server: bfe/1.0.8.18
< Date: Wed, 02 Nov 2016 10:08:13 GMT
< Content-Type: text/html
< Content-Length: 2381
< Last-Modified: Mon, 25 Jul 2016 11:11:30 GMT
< Connection: Keep-Alive
< ETag:
"5795f3e2-94d"
< Cache-Control: private, no-cache, no-store, proxy-revalidate, no-transform
< Pragma: no-cache
< Set-Cookie: BDORZ
=27315
; max-age
=86400
; domain
=.baidu.com
; path
=/
< Accept-Ranges: bytes
<
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
* Connection
$
curl --trace output.txt www.baidu.com
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
2.5 curl --header “Content-Type:application/json” www.baidu.com
$
curl --header
"Content-Type:application/json" www.baidu.com
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
2.6 curl -L url
$
curl -L www.sina.com
2.7 curl -C - -O url
$
curl -C - -O http://www.gnu.org/software/gettext/manual/gettext.html
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1375k 100 1375k 0 0 13479 0 0:01:44 0:01:44 --:--:-- 6633
2.8 curl url >> filename
$
curl www.baidu.com
>> baidu.html
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 2381 100 2381 0 0 1512 0 0:00:01 0:00:01 --:--:-- 1512
2.9 curl --limit-rate 1K url
命令形式:curl --limit-rate 1K url,限制访问网络速度到1K,可用G,M,K,B
$
curl --limit-rate 1K www.baidu.com
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
2.10 curl -u username url/curl --user username:passward url
$
curl -u 24782*****@qq.com www.baidu.com
Enter host password
for user
'24782*****@qq.com':
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
$
curl --user 24782*****@qq.com:****** www.baidu.com
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
2.11 curl -z date url
$
curl http://www.example.com/yy.html
<!doctype html
>
<html
>
<head
>
<title
>Example Domain
</title
>
<meta charset
="utf-8" /
>
<meta http-equiv
="Content-type" content
="text/html; charset=utf-8" /
>
<meta name
="viewport" content
="width=device-width, initial-scale=1" /
>
<style type
="text/css">
body
{
background-color:
margin: 0
;
padding: 0
;
font-family:
"Open Sans",
"Helvetica Neue", Helvetica, Arial, sans-serif
;
}
div
{
width: 600px
;
margin: 5em auto
;
padding: 50px
;
background-color:
border-radius: 1em
;
}
a:link, a:visited
{
color:
text-decoration: none
;
}
@media
(max-width: 700px
) {
body
{
background-color:
}
div
{
width: auto
;
margin: 0 auto
;
border-radius: 0
;
padding: 1em
;
}
}
</style
>
</head
>
<body
>
<div
>
<h1
>Example Domain
</h1
>
<p
>This domain is established to be used
for illustrative examples
in documents. You may use this
domain
in examples without prior coordination or asking
for permission.
</p
>
<p
><a href
="http://www.iana.org/domains/example">More information
...
</a
></p
>
</div
>
</body
>
</html
>
$
curl -I http://www.example.com/yy.html
HTTP/1.1 404 Not Found
Accept-Ranges: bytes
Cache-Control: max-age
=604800
Content-Type: text/html
Date: Wed, 02 Nov 2016 14:41:48 GMT
Etag:
"359670651+gzip"
Expires: Wed, 09 Nov 2016 14:41:48 GMT
Last-Modified: Fri, 09 Aug 2013 23:54:35 GMT
Server: ECS
(cpm/F9B3
)
X-Cache: HIT
x-ec-custom-error: 1
Content-Length: 1270
$
curl -z 18-Jun-16 http://www.example.com/yy.html
$
2.12 curl -x proxyip:port url
$
curl -u -x 138.128.***.***:8*** www.baidu.com
Enter host password
for user
'-x':
curl:
(52
) Empty reply from server
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
2.13 curl -D/-b/-c filemname url
$
curl -D
test www.baidu.com
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
HTTP/1.1 200 OK
Server: bfe/1.0.8.18
Date: Wed, 02 Nov 2016 15:08:31 GMT
Content-Type: text/html
Content-Length: 2381
Last-Modified: Mon, 25 Jul 2016 11:11:41 GMT
Connection: Keep-Alive
ETag:
"5795f3ed-94d"
Cache-Control: private, no-cache, no-store, proxy-revalidate, no-transform
Pragma: no-cache
Set-Cookie: BDORZ
=27315
; max-age
=86400
; domain
=.baidu.com
; path
=/
Accept-Ranges: bytes
$
curl -c
test www.baidu.com
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
$
curl -b
test www.baidu.com
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
$
curl -b
"name=test;pwd=test;" www.baidu.com
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
2.14 curl -G -d “text” url
$
curl -G -d
"name=test" www.baidu.com
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
2.15 curl -# url
$
curl -
2.16 curl -A/–user-agent “text” url
$
curl -A
"Mozilla/4.0 (compatible; MSIE 10.0; Windows NT 5.0)" www.baidu.com
<html
>
<head
><title
>302 Found
</title
></head
>
<body bgcolor
="white">
<center
><h1
>302 Found
</h1
></center
>
<hr
><center
>pr-nginx_1-0-304_BRANCH Branch
Time
: Tue Oct 18 14:33:14 CST 2016
</center
>
</body
>
</html
>
2.17 curl -e/–referer url1 url2
$
curl --referer example.com www.baidu.com
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
2.18 curl -X POST url
$
curl --referer example.com www.baidu.com
<!DOCTYPE html
>
<!--STATUS OK--
><html
> <head
><meta http-equiv
=content-type content
=text/html
;charset
=utf-8
><meta http-equiv
=X-UA-Compatible content
=IE
=Edge
><meta content
=always name
=referrer
><link rel
=stylesheet type
=text/css href
=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css
><title
>百度一下,你就知道
</title
></head
> <body link
=
3.总结
CURL 的命令参数还有很多,就不一一演示了。下面是CURL的参数及其功能列表:
-a/--append 上传文件时,附加到目标文件
-A/--user-agent
<string
> 设置用户代理发送给服务器
- anyauth 可以使用“任何”身份验证方法
-b/--cookie
<name
=string/file
> cookie字符串或文件读取位置
- basic 使用HTTP基本验证
-B/--use-ascii 使用ASCII /文本传输
-c/--cookie-jar
<file
> 操作结束后把cookie写入到这个文件中
-C/--continue-at
<offset
> 断点续转
-d/--data
<data
> HTTP POST方式传送数据
--data-ascii
<data
> 以ascii的方式post数据
--data-binary
<data
> 以二进制的方式post数据
--negotiate 使用HTTP身份验证
--digest 使用数字身份验证
--disable-eprt 禁止使用EPRT或LPRT
--disable-epsv 禁止使用EPSV
-D/--dump-header
<file
> 把header信息写入到该文件中
--egd-file
<file
> 为随机数据
(SSL
)设置EGD socket路径
--tcp-nodelay 使用TCP_NODELAY选项
-e/--referer 来源网址
-E/--cert
<cert
[:passwd
]> 客户端证书文件和密码
(SSL
)
--cert-type
<type
> 证书文件类型
(DER/PEM/ENG
) (SSL
)
--key
<key
> 私钥文件名
(SSL
)
--key-type
<type
> 私钥文件类型
(DER/PEM/ENG
) (SSL
)
--pass
<pass
> 私钥密码
(SSL
)
--engine
<eng
> 加密引擎使用
(SSL
).
"--engine list" for list
--cacert
<file
> CA证书
(SSL
)
--capath
<directory
> CA目录
(made using c_rehash
) to verify peer against
(SSL
)
--ciphers
<list
> SSL密码
--compressed 要求返回是压缩的形势
(using deflate or gzip
)
--connect-timeout
<seconds
> 设置最大请求时间
--create-dirs 建立本地目录的目录层次结构
--crlf 上传是把LF转变成CRLF
-f/--fail 连接失败时不显示http错误
--ftp-create-dirs 如果远程目录不存在,创建远程目录
--ftp-method
[multicwd/nocwd/singlecwd
] 控制CWD的使用
--ftp-pasv 使用 PASV/EPSV 代替端口
--ftp-skip-pasv-ip 使用PASV的时候,忽略该IP地址
--ftp-ssl 尝试用 SSL/TLS 来进行ftp数据传输
--ftp-ssl-reqd 要求用 SSL/TLS 来进行ftp数据传输
-F/--form
<name
=content
> 模拟http表单提交数据
-form-string
<name
=string
> 模拟http表单提交数据
-g/--globoff 禁用网址序列和范围使用
{}和
[]
-G/--get 以get的方式来发送数据
-h/--help 帮助
-H/--header
<line
>自定义头信息传递给服务器
--ignore-content-length 忽略的HTTP头信息的长度
-i/--include 输出时包括protocol头信息
-I/--head 只显示文档信息
从文件中读取-j/--junk-session-cookies忽略会话Cookie
- 界面
<interface
>指定网络接口/地址使用
- krb4
<级别
>启用与指定的安全级别krb4
-j/--junk-session-cookies 读取文件进忽略session cookie
--interface
<interface
> 使用指定网络接口/地址
--krb4
<level
> 使用指定安全级别的krb4
-k/--insecure 允许不使用证书到SSL站点
-K/--config 指定的配置文件读取
-l/--list-only 列出ftp目录下的文件名称
--limit-rate
<rate
> 设置传输速度
--local-port
<NUM
> 强制使用本地端口号
-m/--max-time
<seconds
> 设置最大传输时间
--max-redirs
<num
> 设置最大读取的目录数
--max-filesize
<bytes
> 设置最大下载的文件总量
-M/--manual 显示全手动
-n/--netrc 从netrc文件中读取用户名和密码
--netrc-optional 使用 .netrc 或者 URL来覆盖-n
--ntlm 使用 HTTP NTLM 身份验证
-N/--no-buffer 禁用缓冲输出
-o/--output 把输出写到该文件中
-O/--remote-name 把输出写到该文件中,保留远程文件的文件名
-p/--proxytunnel 使用HTTP代理
--proxy-anyauth 选择任一代理身份验证方法
--proxy-basic 在代理上使用基本身份验证
--proxy-digest 在代理上使用数字身份验证
--proxy-ntlm 在代理上使用ntlm身份验证
-P/--ftp-port
<address
> 使用端口地址,而不是使用PASV
-Q/--quote
<cmd
>文件传输前,发送命令到服务器
-r/--range
<range
>检索来自HTTP/1.1或FTP服务器字节范围
--range-file 读取(SSL)的随机文件
-R/--remote-time 在本地生成文件时,保留远程文件时间
--retry
<num
> 传输出现问题时,重试的次数
--retry-delay
<seconds
> 传输出现问题时,设置重试间隔时间
--retry-max-time
<seconds
> 传输出现问题时,设置最大重试时间
-s/--silent静音模式。不输出任何东西
-S/--show-error 显示错误
--socks4
<host
[:port
]> 用socks4代理给定主机和端口
--socks5
<host
[:port
]> 用socks5代理给定主机和端口
--stderr
<file
>
-t/--telnet-option
<OPT
=val
> Telnet选项设置
--trace
<file
> 对指定文件进行debug
--trace-ascii
<file
> Like --跟踪但没有hex输出
--trace-time 跟踪/详细输出时,添加时间戳
-T/--upload-file
<file
> 上传文件
--url
<URL
> Spet URL to work with
-u/--user
<user
[:password
]>设置服务器的用户和密码
-U/--proxy-user
<user
[:password
]>设置代理用户名和密码
-v/--verbose
-V/--version 显示版本信息
-w/--write-out
[format
]什么输出完成后
-x/--proxy
<host
[:port
]>在给定的端口上使用HTTP代理
-X/--request
<command
>指定什么命令
-y/--speed-time 放弃限速所要的时间。默认为30
-Y/--speed-limit 停止传输速度的限制,速度时间'秒
-z/--time-cond 传送时间设置
-0/--http1.0 使用HTTP 1.0
-1/--tlsv1 使用TLSv1(SSL)
-2/--sslv2 使用SSLv2的(SSL)
-3/--sslv3 使用的SSLv3(SSL)
--3p-quote like -Q
for the
source URL
for 3rd party transfer
--3p-url 使用url,进行第三方传送
--3p-user 使用用户名和密码,进行第三方传送
-4/--ipv4 使用IP4
-6/--ipv6 使用IP6
-
作者:SnailTyan 链接:https://www.jianshu.com/p/3c747ae30e42 来源:简书 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
作者:SnailTyan 链接:https://www.jianshu.com/p/3c747ae30e42 来源:简书 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。