curl常用命令备忘

curl常用命令备忘,第1张

概述#####(输出请求头信息) curl -I xxx-Pro:test xxx$ curl -I https://www.baidu.com/ HTTP/1.1 200 OK Accept-Ranges: bytes Cache-Control: private, no-cache, no-store, proxy- revalidate, no-trans
#####(输出请求头信息) curl -I xxx-Pro:test xxx$ curl -I https://www.baIDu.com/   http/1.1 200 OK    Accept-Ranges: bytes     Cache-Control: private,no-cache,no-store,proxy-    revalIDate,no-transform    Connection: Keep-Alive    Content-Length: 277    Content-Type: text/HTML    Date: Wed,24 Apr 2019 09:37:25 GMT    Etag: "575e1f6d-115"    Last-ModifIEd: Mon,13 Jun 2016 02:50:21 GMT    Pragma: no-cache    Server: bfe/1.0.8.18     #####(需要post的data数据) curl -d     curl -d ‘name=xxx&passwd=yyy‘ www.baIDu.com     #####(要输出的文件地址 输出cookie信息) curl -c      curl -c cookie -d ‘email=xxx&password=yyy‘ http://API.xxx.cn:8115/API/user/login              {"errcode":0,"errmsg":"logout success...","data":    {"username":"xxx","role":"member","uID":    1100,"email":"xxx","add_time":1542010178      #####(携带cookie进行请求)  curl -b cookie www.baIDu.com               #####(自定义header ) curl -H ‘User-Agent: Custom-User-Agent‘     #####(把输出写到该文件)  curl -o    curl -o ./baIDu.HTML  http://www.baIDu.com     lsbaIDu.HTML    #####(把输出写到该文件中,保留远程文件的文件名) curl -O https://www.baIDu.com/img/[email protected]       #####(上传文件)  curl -T xxx.txt -u 用户名:密码 ftp://www.xxxx.com/txt/  
总结

以上是内存溢出为你收集整理的curl常用命令备忘全部内容,希望文章能够帮你解决curl常用命令备忘所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1028445.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存