获取http请求头信息,-I 只打印response header, -i 打印response header和body
curl -I "http://www.jouypub.com"
curl -i "http://www.jouypub.com"
使用代理
curl -x 1.193.162.91:8000 http://www.jouypub.com
curl -x 1.193.162.91:8000 --connect-timeout 3 --max-time 10 http://www.jouypub.com
上传文件
curl -F "filename=@/home/test/file.tar.gz" http://localhost/action.php
-F参数,curl就会以 multipart/form-data 的方式发送POST请求。-F参数以name=value的方式来指定参数内容,如果值是一个文件,则需要以name=@file的方式来指定。
选项
-d 以post方式请求
-H 请求时添加header,冒号前后不能有空格 curl -H "name=abc" http://www.jouypub.com
-o 结果输出到指定文件 curl -o /dev/null http://www.jouypub.com
-m/--max-time 指定最大允许时间,单位秒 curl -m 20 http://www.jouypub.com
--connect-timeout 连接超时,单位秒 curl --connect-timeout 5 http://www.jouypub.com
网友评论