Linux值curl基本用法


Linux值curl基本用法

文章插图

curl 是一个很强大的命令行工具 。你可以把 CURL 想象成一个精简的命令行网页浏览器 。它支持几乎你能想到的所有协议,可以交互访问几乎所有在线内容 。唯一和浏览器不同的是,cURL 不会渲染接收到的相应信息 。curl和wget类似也支持上传下载等感觉比wget更强大,但我觉得用途方面更偏重于模拟网络请求,而下载方面我更喜欢用wget,curl的用法也和wget类似!
  1. 查看源码,直接curl 网址,源码就会打印在命令行上:
curl www.baidu.com
  1. 也可以保存源码 用curl -O 文件名 url:
curl -O baidu.txt wwww.baidu.com这个和wget类似
wget -O baidu1 www.baidu.com
  1. 显示网页头部信息 用-i,当然也会把网页信息显示出来
[root@VM_0_11_centos training]# curl -i www.baidu.comHTTP/1.1 200 OKAccept-Ranges: bytesCache-Control: private, no-cache, no-store, proxy-revalidate, no-transformConnection: keep-aliveContent-Length: 2381Content-Type: text/htmlDate: Thu, 02 Apr 2020 02:14:33 GMTEtag: "588604c8-94d"Last-Modified: Mon, 23 Jan 2017 13:27:36 GMTPragma: no-cacheServer: bfe/1.0.8.18Set-Cookie: BDORZ=27315; max-age=86400; domain=.baidu.com; path=/<!DOCTYPE html> xxx  </html> 
  1. 参数 -v可以显示通信的过程:
[root@VM_0_11_centos training]# curl -v www.baidu.com* About to connect() to www.baidu.com port 80 (#0)*   Trying 180.101.49.11...* Connected to www.baidu.com (180.101.49.11) port 80 (#0)> GET / HTTP/1.1> User-Agent: curl/7.29.0> Host: www.baidu.com> Accept: */*> < HTTP/1.1 200 OK< Accept-Ranges: bytes< Cache-Control: private, no-cache, no-store, proxy-revalidate, no-transform< Connection: keep-alive< Content-Length: 2381< Content-Type: text/html< Date: Thu, 02 Apr 2020 02:16:36 GMT< Etag: "588604c8-94d"< Last-Modified: Mon, 23 Jan 2017 13:27:36 GMT< Pragma: no-cache< Server: bfe/1.0.8.18< Set-Cookie: BDORZ=27315; max-age=86400; domain=.baidu.com; path=/< 更详细的通信信息可以用 参数 --trance 文件名 url,具体信息保存到单独的文件中
[root@VM_0_11_centos training]# curl --trace info.txt www.baidu.com
  1. htpp的动词,例如GET POST,PUT,DELETE等,需要参数 -X
    curl默认的是get请求,如果发送POSt请求curl -X POST www.baidu.com【Linux值curl基本用法】发送表单的时候,GET很简单 只需要把数据拼接到url后面就行
curl www.baidu.com?data=https://www.isolves.com/it/rj/czxt/linux/2020-05-08/xxx&data1=xxxPOST也不难
curl -X POST --data "data=https://www.isolves.com/it/rj/czxt/linux/2020-05-08/xxx" example.com/form.cgiPOST发送请求的数据体可以用-d
$ curl -d'login=emma&password=123'-X POST https://google.com/login 或者$ curl -d 'login=emma' -d 'password=123' -X POST  https://google.com/login使用-d参数以后,HTTP 请求会自动加上标头Content-Type : Application/x-www-form-urlencoded 。并且会自动将请求转为 POST 方法,因此可以省略-X POST 。-d参数可以读取本地文本文件的数据,向服务器发送 。
$ curl -d '@data.txt' https://google.com/login上面命令读取data.txt文件的内容,作为数据体向服务器发送 。
  1. 文件上传: 假定文件上传的表单是下面这样:
 <form method="POST" enctype='multipart/form-data' action="upload.cgi"><input type=file name=upload><input type=submit name=press value=https://www.isolves.com/it/rj/czxt/linux/2020-05-08/"OK">curl上传就应该是:
curl --form upload=@localfilename --form press=OK [URL]
  1. --referer参数表示的是你从哪个页面来的


    推荐阅读