Lidong's blog

curl

欢迎访问新站点: https://www.yidiankuaile.com/post/curl

命令参数

显示输出内容

1
curl http://example.com

-i 输出响应头信息和内容

1
curl -i http://example.com

--head -I 输出响应头信息

1
2
curl --head http://example.com
curl -I http://example.com

-o 输出内容到文件,另存为

1
curl http://example.com/hello.txt -o hello.txt

-O 输出内容到文件,保持原文件名

1
curl -o http://example.com /hello.txt

-d post请求中的data

post请求

1
curl -d "title=hello&&body=hello world" http://

-X 设置请求方式

put请求

1
curl -X put -d "title=hello&&body=hello world" http://

-L 跟踪跳转(Follow redirects)

1
2
curl http://google.com
curl -L http://google.com

-u 上传

1
curl -u user@example.com:123456 -T hello.txt ftp://ftp.expample.com

下载

1
curl -u user@example.com:123456 -o hello.txt ftp://ftp.expample.com/hello.txt

更新记录

  1. 2017-05-09 首次发布

参考链接

https://www.youtube.com/watch?v=7XUibDYw4mc

本文链接:


评论内容还在加载中。。。
如无法加载,请将域名 disqus.com 和 disquscdn.com 加入到你的代理规则中