当前位置:   article > 正文

curl命令使用

使用curl命令 用put方式,把上传到cos对象中

一、curl常用命令

这个命令我在linux下用的多一些,windows也可以,可以说是一款很强大的http命令行工具,支持上传、下载等操作,非常莱斯的工具。

1、get请求:并返回resp

  1. curl https://www.gaojs.com.cn
  2. # 测试请求是否可达:显示一次http通信的整个过程,包括端口连接和http request头信息
  3. curl -v https://www.gaojs.com.cn

image-1657638312625

2、post请求

  1. # post请求
  2. curl -X -POST https://www.gaojs.com.cn
  3. # 也可以这样写
  4. curl -XPOST https://www.gaojs.com.cn
  5. # 带着data发送post请求
  6. curl -XPOST https://www.gaojs.com.cn -d {"gaojs":"testops"}

3、put请求

curl -XPUT https://www.gaojs.com.cn -d {"gaojs":"testops"}

4、delete请求

curl -XDELETE https://www.gaojs.com.cn

5、http头部

  1. # 单个头部
  2. curl -XPOST https://www.gaojs.com.cn -H 'Content-Type:application/json' -d {"gaojs":"testops"}
  3. # 多个头部
  4. curl -XPOST https://www.gaojs.com.cn -H 'Content-Type:application/json' -H 'User-Agent:UA' -d {"gaojs":"testops"}
  5. # 获取所有头部大写i
  6. curl -I https://www.gaojs.com.cn

image-1657637427420

6、下载文件

  1. # 显示进度条(option:-#)
  2. curl -# -O https://www.gaojs.com.cn
  3. # 下载保存固定的文件名中
  4. curl -# -o xxx(文件名) https://www.gaojs.com.cn
  5. # 限制下载速度
  6. curl -# --limit-rate xx(速度 or 100k) -o xxx(文件名) https://www.gaojs.com.cn
  7. # 恢复下载速度
  8. curl -# -C - -o xxx.py https://www.gaojs.com.cn
  9. # 从ftpserver中下载文件
  10. curl -O -u 用户名:密码 ftp://www.linux.com/dodo1.JPG
  11. curl -O ftp://用户名:密码@www.linux.com/dodo1.JPG

7、上传文件

curl -T gaojs.py -u gaojs:Bigdataxxxx ftp://www.gaojs.com.cn/image/

8、请求重定向网址

curl -L https://www.gaojs.com.cn

9、打印详细握手信息

curl -v -L https://www.gaojs.com.cn

二、curl所有参数

  1. [root@VM-4-8-centos ~]# curl -help
  2. Usage: curl [options...] <url>
  3. Options: (H) means HTTP/HTTPS only, (F) means FTP only
  4. --anyauth Pick "any" authentication method (H)
  5. -a, --append Append to target file when uploading (F/SFTP)
  6. --basic Use HTTP Basic Authentication (H)
  7. --cacert FILE CA certificate to verify peer against (SSL)
  8. --capath DIR CA directory to verify peer against (SSL)
  9. -E, --cert CERT[:PASSWD] Client certificate file and password (SSL)
  10. --cert-type TYPE Certificate file type (DER/PEM/ENG) (SSL)
  11. --ciphers LIST SSL ciphers to use (SSL)
  12. --compressed Request compressed response (using deflate or gzip)
  13. -K, --config FILE Specify which config file to read
  14. --connect-timeout SECONDS Maximum time allowed for connection
  15. -C, --continue-at OFFSET Resumed transfer offset
  16. -b, --cookie STRING/FILE String or file to read cookies from (H)
  17. -c, --cookie-jar FILE Write cookies to this file after operation (H)
  18. --create-dirs Create necessary local directory hierarchy
  19. --crlf Convert LF to CRLF in upload
  20. --crlfile FILE Get a CRL list in PEM format from the given file
  21. -d, --data DATA HTTP POST data (H)
  22. --data-ascii DATA HTTP POST ASCII data (H)
  23. --data-binary DATA HTTP POST binary data (H)
  24. --data-urlencode DATA HTTP POST data url encoded (H)
  25. --delegation STRING GSS-API delegation permission
  26. --digest Use HTTP Digest Authentication (H)
  27. --disable-eprt Inhibit using EPRT or LPRT (F)
  28. --disable-epsv Inhibit using EPSV (F)
  29. -D, --dump-header FILE Write the headers to this file
  30. --egd-file FILE EGD socket path for random data (SSL)
  31. --engine ENGINGE Crypto engine (SSL). "--engine list" for list
  32. -f, --fail Fail silently (no output at all) on HTTP errors (H)
  33. -F, --form CONTENT Specify HTTP multipart POST data (H)
  34. --form-string STRING Specify HTTP multipart POST data (H)
  35. --ftp-account DATA Account data string (F)
  36. --ftp-alternative-to-user COMMAND String to replace "USER [name]" (F)
  37. --ftp-create-dirs Create the remote dirs if not present (F)
  38. --ftp-method [MULTICWD/NOCWD/SINGLECWD] Control CWD usage (F)
  39. --ftp-pasv Use PASV/EPSV instead of PORT (F)
  40. -P, --ftp-port ADR Use PORT with given address instead of PASV (F)
  41. --ftp-skip-pasv-ip Skip the IP address for PASV (F)
  42. --ftp-pret Send PRET before PASV (for drftpd) (F)
  43. --ftp-ssl-ccc Send CCC after authenticating (F)
  44. --ftp-ssl-ccc-mode ACTIVE/PASSIVE Set CCC mode (F)
  45. --ftp-ssl-control Require SSL/TLS for ftp login, clear for transfer (F)
  46. -G, --get Send the -d data with a HTTP GET (H)
  47. -g, --globoff Disable URL sequences and ranges using {} and []
  48. -H, --header LINE Custom header to pass to server (H)
  49. -I, --head Show document info only
  50. -h, --help This help text
  51. --hostpubmd5 MD5 Hex encoded MD5 string of the host public key. (SSH)
  52. -0, --http1.0 Use HTTP 1.0 (H)
  53. --ignore-content-length Ignore the HTTP Content-Length header
  54. -i, --include Include protocol headers in the output (H/F)
  55. -k, --insecure Allow connections to SSL sites without certs (H)
  56. --interface INTERFACE Specify network interface/address to use
  57. -4, --ipv4 Resolve name to IPv4 address
  58. -6, --ipv6 Resolve name to IPv6 address
  59. -j, --junk-session-cookies Ignore session cookies read from file (H)
  60. --keepalive-time SECONDS Interval between keepalive probes
  61. --key KEY Private key file name (SSL/SSH)
  62. --key-type TYPE Private key file type (DER/PEM/ENG) (SSL)
  63. --krb LEVEL Enable Kerberos with specified security level (F)
  64. --libcurl FILE Dump libcurl equivalent code of this command line
  65. --limit-rate RATE Limit transfer speed to this rate
  66. -l, --list-only List only names of an FTP directory (F)
  67. --local-port RANGE Force use of these local port numbers
  68. -L, --location Follow redirects (H)
  69. --location-trusted like --location and send auth to other hosts (H)
  70. -M, --manual Display the full manual
  71. --mail-from FROM Mail from this address
  72. --mail-rcpt TO Mail to this receiver(s)
  73. --mail-auth AUTH Originator address of the original email
  74. --max-filesize BYTES Maximum file size to download (H/F)
  75. --max-redirs NUM Maximum number of redirects allowed (H)
  76. -m, --max-time SECONDS Maximum time allowed for the transfer
  77. --metalink Process given URLs as metalink XML file
  78. --negotiate Use HTTP Negotiate Authentication (H)
  79. -n, --netrc Must read .netrc for user name and password
  80. --netrc-optional Use either .netrc or URL; overrides -n
  81. --netrc-file FILE Set up the netrc filename to use
  82. -N, --no-buffer Disable buffering of the output stream
  83. --no-keepalive Disable keepalive use on the connection
  84. --no-sessionid Disable SSL session-ID reusing (SSL)
  85. --noproxy List of hosts which do not use proxy
  86. --ntlm Use HTTP NTLM authentication (H)
  87. -o, --output FILE Write output to <file> instead of stdout
  88. --pass PASS Pass phrase for the private key (SSL/SSH)
  89. --post301 Do not switch to GET after following a 301 redirect (H)
  90. --post302 Do not switch to GET after following a 302 redirect (H)
  91. --post303 Do not switch to GET after following a 303 redirect (H)
  92. -#, --progress-bar Display transfer progress as a progress bar
  93. --proto PROTOCOLS Enable/disable specified protocols
  94. --proto-redir PROTOCOLS Enable/disable specified protocols on redirect
  95. -x, --proxy [PROTOCOL://]HOST[:PORT] Use proxy on given port
  96. --proxy-anyauth Pick "any" proxy authentication method (H)
  97. --proxy-basic Use Basic authentication on the proxy (H)
  98. --proxy-digest Use Digest authentication on the proxy (H)
  99. --proxy-negotiate Use Negotiate authentication on the proxy (H)
  100. --proxy-ntlm Use NTLM authentication on the proxy (H)
  101. -U, --proxy-user USER[:PASSWORD] Proxy user and password
  102. --proxy1.0 HOST[:PORT] Use HTTP/1.0 proxy on given port
  103. -p, --proxytunnel Operate through a HTTP proxy tunnel (using CONNECT)
  104. --pubkey KEY Public key file name (SSH)
  105. -Q, --quote CMD Send command(s) to server before transfer (F/SFTP)
  106. --random-file FILE File for reading random data from (SSL)
  107. -r, --range RANGE Retrieve only the bytes within a range
  108. --raw Do HTTP "raw", without any transfer decoding (H)
  109. -e, --referer Referer URL (H)
  110. -J, --remote-header-name Use the header-provided filename (H)
  111. -O, --remote-name Write output to a file named as the remote file
  112. --remote-name-all Use the remote file name for all URLs
  113. -R, --remote-time Set the remote file's time on the local output
  114. -X, --request COMMAND Specify request command to use
  115. --resolve HOST:PORT:ADDRESS Force resolve of HOST:PORT to ADDRESS
  116. --retry NUM Retry request NUM times if transient problems occur
  117. --retry-delay SECONDS When retrying, wait this many seconds between each
  118. --retry-max-time SECONDS Retry only within this period
  119. -S, --show-error Show error. With -s, make curl show errors when they occur
  120. -s, --silent Silent mode. Don't output anything
  121. --socks4 HOST[:PORT] SOCKS4 proxy on given host + port
  122. --socks4a HOST[:PORT] SOCKS4a proxy on given host + port
  123. --socks5 HOST[:PORT] SOCKS5 proxy on given host + port
  124. --socks5-basic Enable username/password auth for SOCKS5 proxies
  125. --socks5-gssapi Enable GSS-API auth for SOCKS5 proxies
  126. --socks5-hostname HOST[:PORT] SOCKS5 proxy, pass host name to proxy
  127. --socks5-gssapi-service NAME SOCKS5 proxy service name for gssapi
  128. --socks5-gssapi-nec Compatibility with NEC SOCKS5 server
  129. -Y, --speed-limit RATE Stop transfers below speed-limit for 'speed-time' secs
  130. -y, --speed-time SECONDS Time for trig speed-limit abort. Defaults to 30
  131. --ssl Try SSL/TLS (FTP, IMAP, POP3, SMTP)
  132. --ssl-reqd Require SSL/TLS (FTP, IMAP, POP3, SMTP)
  133. -2, --sslv2 Use SSLv2 (SSL)
  134. -3, --sslv3 Use SSLv3 (SSL)
  135. --ssl-allow-beast Allow security flaw to improve interop (SSL)
  136. --stderr FILE Where to redirect stderr. - means stdout
  137. --tcp-nodelay Use the TCP_NODELAY option
  138. -t, --telnet-option OPT=VAL Set telnet option
  139. --tftp-blksize VALUE Set TFTP BLKSIZE option (must be >512)
  140. -z, --time-cond TIME Transfer based on a time condition
  141. -1, --tlsv1 Use => TLSv1 (SSL)
  142. --tlsv1.0 Use TLSv1.0 (SSL)
  143. --tlsv1.1 Use TLSv1.1 (SSL)
  144. --tlsv1.2 Use TLSv1.2 (SSL)
  145. --tlsv1.3 Use TLSv1.3 (SSL)
  146. --tls-max VERSION Use TLS up to VERSION (SSL)
  147. --trace FILE Write a debug trace to the given file
  148. --trace-ascii FILE Like --trace but without the hex output
  149. --trace-time Add time stamps to trace/verbose output
  150. --tr-encoding Request compressed transfer encoding (H)
  151. -T, --upload-file FILE Transfer FILE to destination
  152. --url URL URL to work with
  153. -B, --use-ascii Use ASCII/text transfer
  154. -u, --user USER[:PASSWORD] Server user and password
  155. --tlsuser USER TLS username
  156. --tlspassword STRING TLS password
  157. --tlsauthtype STRING TLS authentication type (default SRP)
  158. --unix-socket FILE Connect through this UNIX domain socket
  159. -A, --user-agent STRING User-Agent to send to server (H)
  160. -v, --verbose Make the operation more talkative
  161. -V, --version Show version number and quit
  162. -w, --write-out FORMAT What to output after completion
  163. --xattr Store metadata in extended file attributes
  164. -q If used as the first parameter disables .curlrc

三、参数汉化(网摘)

  1. - anyauth 可以使用“任何”身份验证方法
  2.   -A/--user-agent 设置用户代理发送给服务器
  3.   -b/--cookie cookie字符串或文件读取位置
  4.   - basic 使用HTTP基本验证
  5.   -B/--use-ascii 使用ASCII /文本传输
  6.   -c/--cookie-jar 操作结束后把cookie写入到这个文件中
  7.   -C/--continue-at 断点续转
  8.   -d/--data HTTP POST方式传送数据
  9.   --data-ascii 以ascii的方式post数据
  10.   --data-binary 以二进制的方式post数据
  11.   --negotiate 使用HTTP身份验证
  12.   --digest 使用数字身份验证
  13.   --disable-eprt 禁止使用EPRT或LPRT
  14.   --disable-epsv 禁止使用EPSV
  15.   -D/--dump-header 把header信息写入到该文件中
  16.   --egd-file 为随机数据(SSL)设置EGD socket路径
  17.   --tcp-nodelay 使用TCP_NODELAY选项
  18.   -e/--referer 来源网址
  19.   -E/--cert 客户端证书文件和密码 (SSL)
  20.   --cert-type 证书文件类型 (DER/PEM/ENG) (SSL)
  21.   --key 私钥文件名 (SSL)
  22.   --key-type 私钥文件类型 (DER/PEM/ENG) (SSL)
  23.   --pass 私钥密码 (SSL)
  24.   --engine 加密引擎使用 (SSL). "--engine list" for list
  25.   --cacert CA证书 (SSL)
  26.   --capath CA目录 (made using c_rehash) to verify peer against (SSL)
  27.   --ciphers SSL密码
  28.   --compressed 要求返回是压缩的形势 (using deflate or gzip)  
  29.   --con nec t-timeout 设置最大请求时间
  30.   --create-dirs 建立本地目录的目录层次结构
  31.   --crlf 上传是把LF转变成CRLF
  32.   -f/--fail 连接失败时不显示http错误
  33.   --ftp-create-dirs 如果远程目录不存在,创建远程目录
  34.   --ftp-method [multicwd/nocwd/singlecwd] 控制CWD的使用
  35.   --ftp-pasv 使用 PASV/EPSV 代替端口
  36.   --ftp-skip-pasv-ip 使用PASV的时候,忽略该IP地址
  37.   --ftp-ssl 尝试用 SSL/TLS 来进行ftp数据传输
  38.   --ftp-ssl-reqd 要求用 SSL/TLS 来进行ftp数据传输
  39.   -F/--form 模拟http表单提交数据
  40.   -form-string 模拟http表单提交数据
  41.   -g/--globoff 禁用网址序列和范围使用{}和[]
  42.   -G/--get 以get的方式来发送数据
  43.   -h/--help 帮助
  44.   -H/--header 自定义头信息传递给服务器
  45.   --ignore-content-length 忽略的HTTP头信息的长度
  46.   -i/--include 输出时包括protocol头信息
  47.   -I/--head 只显示文档信息
  48.   从文件中读取-j/--junk-session-cookies忽略会话Cookie
  49.   - 界面指定网络接口/地址使用
  50.   - krb4 <级别>启用与指定的安全级别krb4
  51.   -j/--junk-session-cookies 读取文件进忽略session cookie
  52.   --interface 使用指定网络接口/地址
  53.   --krb4 使用指定安全级别的krb4
  54.   -k/--insecure 允许不使用证书到SSL站点
  55.   -K/--config 指定的配置文件读取
  56.   -l/--list-only 列出ftp目录下的文件名称
  57.   --limit-rate 设置传输速度
  58.   --local-port 强制使用本地端口号
  59.   -m/--max-time 设置最大传输时间
  60.   --max-redirs 设置最大读取的目录数
  61.   --max-filesize 设置最大下载的文件总量
  62.   -M/--manual 显示全手动
  63.   -n/--netrc 从netrc文件中读取用户名和密码
  64.   --netrc-optional 使用 .netrc 或者 URL来覆盖-n
  65.   --ntlm 使用 HTTP NTLM 身份验证
  66.   -N/--no-buffer 禁用缓冲输出
  67.   -o/--output 把输出写到该文件中
  68.   -O/--remote-name 把输出写到该文件中,保留远程文件的文件名
  69.   -p/--proxytunnel 使用HTTP代理
  70.   --proxy-anyauth 选择任一代理身份验证方法
  71.   --proxy-basic 在代理上使用基本身份验证
  72.   --proxy-digest 在代理上使用数字身份验证
  73.   --proxy-ntlm 在代理上使用ntlm身份验证
  74.   -P/--ftp-port
  75.   使用端口地址,而不是使用PASV
  76.   -Q/--quote 文件传输前,发送命令到服务器
  77.   -r/--range 检索来自HTTP/1.1或FTP服务器字节范围
  78.   --range-file 读取(SSL)的随机文件
  79.   -R/--remote-time 在本地生成文件时,保留远程文件时间
  80.   --retry 传输出现问题时,重试的次数
  81.   --retry-delay 传输出现问题时,设置重试间隔时间
  82.   --retry-max-time 传输出现问题时,设置最大重试时间
  83.   -s/--silent静音模式。不输出任何东西
  84.   -S/--show-error 显示错误
  85.   --socks4 用socks4代理给定主机和端口
  86.   --socks5 用socks5代理给定主机和端口
  87.   --stderr
  88.   -t/--telnet-option Telnet选项设置
  89.   --trace 对指定文件进行debug
  90.   --trace-ascii Like --跟踪但没有hex输出
  91.   --trace-time 跟踪/详细输出时,添加时间戳
  92.   -T/--upload-file 上传文件  
  93.   --url Spet URL to work with
  94.   -u/--user 设置服务器的用户和密码
  95.   -U/--proxy-user 设置代理用户名和密码
  96.   -v/--verbose
  97.   -V/--version 显示版本信息
  98.   -w/--write-out [format]什么输出完成后
  99.   -x/--proxy 在给定的端口上使用HTTP代理
  100.   -X/--request 指定什么命令
  101.   -y/--speed-time 放弃限速所要的时间。默认为30
  102.   -Y/--speed-limit 停止传输速度的限制,速度时间'秒
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/198361
推荐阅读
相关标签
  

闽ICP备14008679号