curl.1
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:70k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. ." **************************************************************************
  2. ." *                                  _   _ ____  _
  3. ." *  Project                     ___| | | |  _ | |
  4. ." *                             / __| | | | |_) | |
  5. ." *                            | (__| |_| |  _ <| |___
  6. ." *                             ___|___/|_| ______|
  7. ." *
  8. ." * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. ." *
  10. ." * This software is licensed as described in the file COPYING, which
  11. ." * you should have received as part of this distribution. The terms
  12. ." * are also available at http://curl.haxx.se/docs/copyright.html.
  13. ." *
  14. ." * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. ." * copies of the Software, and permit persons to whom the Software is
  16. ." * furnished to do so, under the terms of the COPYING file.
  17. ." *
  18. ." * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. ." * KIND, either express or implied.
  20. ." *
  21. ." * $Id: curl.1,v 1.262 2008-12-22 13:07:14 bagder Exp $
  22. ." **************************************************************************
  23. ."
  24. .TH curl 1 "10 July 2008" "Curl 7.19.0" "Curl Manual"
  25. .SH NAME
  26. curl - transfer a URL
  27. .SH SYNOPSIS
  28. .B curl [options]
  29. .I [URL...]
  30. .SH DESCRIPTION
  31. .B curl
  32. is a tool to transfer data from or to a server, using one of the supported
  33. protocols (HTTP, HTTPS, FTP, FTPS, SCP, SFTP, TFTP, DICT, TELNET, LDAP or
  34. FILE).  The command is designed to work without user interaction.
  35. curl offers a busload of useful tricks like proxy support, user
  36. authentication, FTP upload, HTTP post, SSL connections, cookies, file transfer
  37. resume and more. As you will see below, the number of features will make your
  38. head spin!
  39. curl is powered by libcurl for all transfer-related features. See
  40. .BR libcurl (3)
  41. for details.
  42. .SH URL
  43. The URL syntax is protocol-dependent. You'll find a detailed description in
  44. RFC 3986.
  45. You can specify multiple URLs or parts of URLs by writing part sets within
  46. braces as in:
  47.  http://site.{one,two,three}.com
  48. or you can get sequences of alphanumeric series by using [] as in:
  49.  ftp://ftp.numericals.com/file[1-100].txt
  50.  ftp://ftp.numericals.com/file[001-100].txt    (with leading zeros)
  51.  ftp://ftp.letters.com/file[a-z].txt
  52. No nesting of the sequences is supported at the moment, but you can use
  53. several ones next to each other:
  54.  http://any.org/archive[1996-1999]/vol[1-4]/part{a,b,c}.html
  55. You can specify any amount of URLs on the command line. They will be fetched
  56. in a sequential manner in the specified order.
  57. Since curl 7.15.1 you can also specify a step counter for the ranges, so that
  58. you can get every Nth number or letter:
  59.  http://www.numericals.com/file[1-100:10].txt
  60.  http://www.letters.com/file[a-z:2].txt
  61. If you specify URL without protocol:// prefix, curl will attempt to guess what
  62. protocol you might want. It will then default to HTTP but try other protocols
  63. based on often-used host name prefixes. For example, for host names starting
  64. with "ftp." curl will assume you want to speak FTP.
  65. Curl will attempt to re-use connections for multiple file transfers, so that
  66. getting many files from the same server will not do multiple connects /
  67. handshakes. This improves speed. Of course this is only done on files
  68. specified on a single command line and cannot be used between separate curl
  69. invokes.
  70. .SH "PROGRESS METER"
  71. curl normally displays a progress meter during operations, indicating the amount
  72. of transferred data, transfer speeds and estimated time left, etc.
  73. However, since curl displays this data to the terminal by default, if you invoke
  74. curl to do an operation and it is about to write data to the terminal, it
  75. fIdisablesfP the progress meter as otherwise it would mess up the output
  76. mixing progress meter and response data.
  77. If you want a progress meter for HTTP POST or PUT requests, you need to
  78. redirect the response output to a file, using shell redirect (>), -o [file] or
  79. similar.
  80. It is not the same case for FTP upload as that operation does not spit out
  81. any response data to the terminal.
  82. If you prefer a progress "bar" instead of the regular meter, fI-#fP is your
  83. friend.
  84. .SH OPTIONS
  85. In general, all boolean options are enabled with --option and yet again
  86. disabled with --fBno-fPoption. That is, you use the exact same option name
  87. but prefix it with "no-". However, in this list we mostly only list and show
  88. the --option version of them. (This concept with --no options was added in
  89. 7.19.0. Previously most options were toggled on/off on repeated use of the
  90. same command line option.)
  91. .IP "-a/--append"
  92. (FTP/SFTP) When used in an upload, this will tell curl to append to the target
  93. file instead of overwriting it. If the file doesn't exist, it will be created.
  94. Note that this flag is ignored by some SSH servers (including OpenSSH).
  95. .IP "-A/--user-agent <agent string>"
  96. (HTTP) Specify the User-Agent string to send to the HTTP server. Some badly
  97. done CGIs fail if this field isn't set to "Mozilla/4.0". To encode blanks in
  98. the string, surround the string with single quote marks. This can also be set
  99. with the fI-H/--headerfP option of course.
  100. If this option is set more than once, the last one will be the one that's
  101. used.
  102. .IP "--anyauth"
  103. (HTTP) Tells curl to figure out authentication method by itself, and use the
  104. most secure one the remote site claims to support. This is done by first
  105. doing a request and checking the response-headers, thus possibly inducing an
  106. extra network round-trip. This is used instead of setting a specific
  107. authentication method, which you can do with fI--basicfP, fI--digestfP,
  108. fI--ntlmfP, and fI--negotiatefP.
  109. Note that using --anyauth is not recommended if you do uploads from stdin,
  110. since it may require data to be sent twice and then the client must be able to
  111. rewind. If the need should arise when uploading from stdin, the upload
  112. operation will fail.
  113. .IP "-b/--cookie <name=data>"
  114. (HTTP)
  115. Pass the data to the HTTP server as a cookie. It is supposedly the
  116. data previously received from the server in a "Set-Cookie:" line.
  117. The data should be in the format "NAME1=VALUE1; NAME2=VALUE2".
  118. If no '=' symbol is used in the line, it is treated as a filename to use to
  119. read previously stored cookie lines from, which should be used in this session
  120. if they match. Using this method also activates the "cookie parser" which will
  121. make curl record incoming cookies too, which may be handy if you're using this
  122. in combination with the fI-L/--locationfP option. The file format of the
  123. file to read cookies from should be plain HTTP headers or the Netscape/Mozilla
  124. cookie file format.
  125. fBNOTEfP that the file specified with fI-b/--cookiefP is only used as
  126. input. No cookies will be stored in the file. To store cookies, use the
  127. fI-c/--cookie-jarfP option or you could even save the HTTP headers to a file
  128. using fI-D/--dump-headerfP!
  129. If this option is set more than once, the last one will be the one that's
  130. used.
  131. .IP "-B/--use-ascii"
  132. Enable ASCII transfer when using FTP or LDAP. For FTP, this can also be
  133. enforced by using an URL that ends with ";type=A". This option causes data
  134. sent to stdout to be in text mode for win32 systems.
  135. .IP "--basic"
  136. (HTTP) Tells curl to use HTTP Basic authentication. This is the default and
  137. this option is usually pointless, unless you use it to override a previously
  138. set option that sets a different authentication method (such as fI--ntlmfP,
  139. fI--digestfP, or fI--negotiatefP).
  140. .IP "--ciphers <list of ciphers>"
  141. (SSL) Specifies which ciphers to use in the connection. The list of ciphers
  142. must specify valid ciphers. Read up on SSL cipher list details on this URL:
  143. fIhttp://www.openssl.org/docs/apps/ciphers.htmlfP
  144. NSS ciphers are done differently than OpenSSL and GnuTLS. The full list of
  145. NSS ciphers is in the NSSCipherSuite entry at this URL:
  146. fIhttp://directory.fedora.redhat.com/docs/mod_nss.html#DirectivesfP
  147. If this option is used several times, the last one will override the others.
  148. .IP "--compressed"
  149. (HTTP) Request a compressed response using one of the algorithms libcurl
  150. supports, and return the uncompressed document.  If this option is used and
  151. the server sends an unsupported encoding, curl will report an error.
  152. .IP "--connect-timeout <seconds>"
  153. Maximum time in seconds that you allow the connection to the server to take.
  154. This only limits the connection phase, once curl has connected this option is
  155. of no more use. See also the fI-m/--max-timefP option.
  156. If this option is used several times, the last one will be used.
  157. .IP "-c/--cookie-jar <file name>"
  158. Specify to which file you want curl to write all cookies after a completed
  159. operation. Curl writes all cookies previously read from a specified file as
  160. well as all cookies received from remote server(s). If no cookies are known,
  161. no file will be written. The file will be written using the Netscape cookie
  162. file format. If you set the file name to a single dash, "-", the cookies will
  163. be written to stdout.
  164. .B NOTE
  165. If the cookie jar can't be created or written to, the whole curl operation
  166. won't fail or even report an error clearly. Using -v will get a warning
  167. displayed, but that is the only visible feedback you get about this possibly
  168. lethal situation.
  169. If this option is used several times, the last specified file name will be
  170. used.
  171. .IP "-C/--continue-at <offset>"
  172. Continue/Resume a previous file transfer at the given offset. The given offset
  173. is the exact number of bytes that will be skipped, counting from the beginning
  174. of the source file before it is transferred to the destination.  If used with
  175. uploads, the FTP server command SIZE will not be used by curl.
  176. Use "-C -" to tell curl to automatically find out where/how to resume the
  177. transfer. It then uses the given output/input files to figure that out.
  178. If this option is used several times, the last one will be used.
  179. .IP "--create-dirs"
  180. When used in conjunction with the -o option, curl will create the necessary
  181. local directory hierarchy as needed. This option creates the dirs mentioned
  182. with the -o option, nothing else. If the -o file name uses no dir or if the
  183. dirs it mentions already exist, no dir will be created.
  184. To create remote directories when using FTP or SFTP, try 
  185. fI--ftp-create-dirsfP.
  186. .IP "--crlf"
  187. (FTP) Convert LF to CRLF in upload. Useful for MVS (OS/390).
  188. .IP "-d/--data <data>"
  189. (HTTP) Sends the specified data in a POST request to the HTTP server, in the
  190. same way that a browser does when a user has filled in an HTML form and
  191. presses the submit button. This will cause curl to pass the data to the server
  192. using the content-type application/x-www-form-urlencoded.  Compare to
  193. fI-F/--formfP.
  194. fI-d/--datafP is the same as fI--data-asciifP. To post data purely binary,
  195. you should instead use the fI--data-binaryfP option. To URL-encode the value
  196. of a form field you may use fI--data-urlencodefP.
  197. If any of these options is used more than once on the same command line, the
  198. data pieces specified will be merged together with a separating
  199. &-symbol. Thus, using '-d name=daniel -d skill=lousy' would generate a post
  200. chunk that looks like &'name=daniel&skill=lousy'.
  201. If you start the data with the letter @, the rest should be a file name to
  202. read the data from, or - if you want curl to read the data from stdin.  The
  203. contents of the file must already be URL-encoded. Multiple files can also be
  204. specified. Posting data from a file named 'foobar' would thus be done with
  205. fI--data @foobarfP.
  206. .IP "--data-binary <data>"
  207. (HTTP) This posts data exactly as specified with no extra processing
  208. whatsoever.
  209. If you start the data with the letter @, the rest should be a filename.  Data
  210. is posted in a similar manner as fI--data-asciifP does, except that newlines
  211. are preserved and conversions are never done.
  212. If this option is used several times, the ones following the first will append
  213. data as described in fI-d/--datafP.
  214. .IP "--data-urlencode <data>"
  215. (HTTP) This posts data, similar to the other --data options with the exception
  216. that this performs URL-encoding. (Added in 7.18.0)
  217. To be CGI-compliant, the <data> part should begin with a fInamefP followed
  218. by a separator and a content specification. The <data> part can be passed to
  219. curl using one of the following syntaxes:
  220. .RS
  221. .IP "content"
  222. This will make curl URL-encode the content and pass that on. Just be careful
  223. so that the content doesn't contain any = or @ symbols, as that will then make
  224. the syntax match one of the other cases below!
  225. .IP "=content"
  226. This will make curl URL-encode the content and pass that on. The preceding =
  227. symbol is not included in the data.
  228. .IP "name=content"
  229. This will make curl URL-encode the content part and pass that on. Note that
  230. the name part is expected to be URL-encoded already.
  231. .IP "@filename"
  232. This will make curl load data from the given file (including any newlines),
  233. URL-encode that data and pass it on in the POST.
  234. .IP "name@filename"
  235. This will make curl load data from the given file (including any newlines),
  236. URL-encode that data and pass it on in the POST. The name part gets an equal
  237. sign appended, resulting in fIname=urlencoded-file-contentfP. Note that the
  238. name is expected to be URL-encoded already.
  239. .RE
  240. .IP "--digest"
  241. (HTTP) Enables HTTP Digest authentication. This is a authentication that
  242. prevents the password from being sent over the wire in clear text. Use this in
  243. combination with the normal fI-u/--userfP option to set user name and
  244. password. See also fI--ntlmfP, fI--negotiatefP and fI--anyauthfP for
  245. related options.
  246. If this option is used several times, the following occurrences make no
  247. difference.
  248. .IP "--disable-eprt"
  249. (FTP) Tell curl to disable the use of the EPRT and LPRT commands when doing
  250. active FTP transfers. Curl will normally always first attempt to use EPRT,
  251. then LPRT before using PORT, but with this option, it will use PORT right
  252. away. EPRT and LPRT are extensions to the original FTP protocol, and may not work
  253. on all servers, but they enable more functionality in a better way than the
  254. traditional PORT command.
  255. Since curl 7.19.0, fB--eprtfP can be used to explicitly enable EPRT again
  256. and fB--no-eprtfP is an alias for fB--disable-eprtfP.
  257. .IP "--disable-epsv"
  258. (FTP) Tell curl to disable the use of the EPSV command when doing passive FTP
  259. transfers. Curl will normally always first attempt to use EPSV before PASV,
  260. but with this option, it will not try using EPSV.
  261. Since curl 7.19.0, fB--epsvfP can be used to explicitly enable EPRT again
  262. and fB--no-epsvfP is an alias for fB--disable-epsvfP.
  263. .IP "-D/--dump-header <file>"
  264. Write the protocol headers to the specified file.
  265. This option is handy to use when you want to store the headers that a HTTP
  266. site sends to you. Cookies from the headers could then be read in a second
  267. curl invocation by using the fI-b/--cookiefP option! The fI-c/--cookie-jarfP
  268. option is however a better way to store cookies.
  269. When used in FTP, the FTP server response lines are considered being "headers"
  270. and thus are saved there.
  271. If this option is used several times, the last one will be used.
  272. .IP "-e/--referer <URL>"
  273. (HTTP) Sends the "Referer Page" information to the HTTP server. This can also
  274. be set with the fI-H/--headerfP flag of course.  When used with
  275. fI-L/--locationfP you can append ";auto" to the --referer URL to make curl
  276. automatically set the previous URL when it follows a Location: header. The
  277. &";auto" string can be used alone, even if you don't set an initial --referer.
  278. If this option is used several times, the last one will be used.
  279. .IP "--engine <name>"
  280. Select the OpenSSL crypto engine to use for cipher
  281. operations. Use fI--engine listfP to print a list of build-time supported
  282. engines. Note that not all (or none) of the engines may be available at
  283. run-time.
  284. .IP "--environment"
  285. (RISC OS ONLY) Sets a range of environment variables, using the names the -w
  286. option supports, to allow easier extraction of useful information after having
  287. run curl.
  288. .IP "--egd-file <file>"
  289. (SSL) Specify the path name to the Entropy Gathering Daemon socket. The socket
  290. is used to seed the random engine for SSL connections. See also the
  291. fI--random-filefP option.
  292. .IP "-E/--cert <certificate[:password]>"
  293. (SSL) Tells curl to use the specified certificate file when getting a file
  294. with HTTPS or FTPS. The certificate must be in PEM format.  If the optional
  295. password isn't specified, it will be queried for on the terminal. Note that
  296. this option assumes a &"certificate" file that is the private key and the
  297. private certificate concatenated! See fI--certfP and fI--keyfP to specify
  298. them independently.
  299. If curl is built against the NSS SSL library then this option tells
  300. curl the nickname of the certificate to use within the NSS database defined
  301. by the environment variable SSL_DIR (or by default /etc/pki/nssdb). If the
  302. NSS PEM PKCS#11 module (libnsspem.so) is available then PEM files may be
  303. loaded.
  304. If this option is used several times, the last one will be used.
  305. .IP "--cert-type <type>"
  306. (SSL) Tells curl what certificate type the provided certificate is in. PEM,
  307. DER and ENG are recognized types.  If not specified, PEM is assumed.
  308. If this option is used several times, the last one will be used.
  309. .IP "--cacert <CA certificate>"
  310. (SSL) Tells curl to use the specified certificate file to verify the peer. The
  311. file may contain multiple CA certificates. The certificate(s) must be in PEM
  312. format. Normally curl is built to use a default file for this, so this option
  313. is typically used to alter that default file.
  314. curl recognizes the environment variable named 'CURL_CA_BUNDLE' if it is
  315. set, and uses the given path as a path to a CA cert bundle. This option
  316. overrides that variable.
  317. The windows version of curl will automatically look for a CA certs file named
  318. 'curl-ca-bundle.crt', either in the same directory as curl.exe, or in the
  319. Current Working Directory, or in any folder along your PATH.
  320. If curl is built against the NSS SSL library then this option tells
  321. curl the nickname of the CA certificate to use within the NSS database
  322. defined by the environment variable SSL_DIR (or by default /etc/pki/nssdb).
  323. If the NSS PEM PKCS#11 module (libnsspem.so) is available then PEM files
  324. may be loaded.
  325. If this option is used several times, the last one will be used.
  326. .IP "--capath <CA certificate directory>"
  327. (SSL) Tells curl to use the specified certificate directory to verify the
  328. peer. The certificates must be in PEM format, and the directory must have been
  329. processed using the c_rehash utility supplied with openssl. Using
  330. fI--capathfP can allow curl to make SSL-connections much more efficiently
  331. than using fI--cacertfP if the fI--cacertfP file contains many CA
  332. certificates.
  333. If this option is used several times, the last one will be used.
  334. .IP "-f/--fail"
  335. (HTTP) Fail silently (no output at all) on server errors. This is mostly done
  336. to better enable scripts etc to better deal with failed attempts. In
  337. normal cases when a HTTP server fails to deliver a document, it returns an
  338. HTML document stating so (which often also describes why and more). This flag
  339. will prevent curl from outputting that and return error 22.
  340. This method is not fail-safe and there are occasions where non-successful
  341. response codes will slip through, especially when authentication is involved
  342. (response codes 401 and 407).
  343. .IP "--ftp-account [data]"
  344. (FTP) When an FTP server asks for "account data" after user name and password
  345. has been provided, this data is sent off using the ACCT command. (Added in
  346. 7.13.0)
  347. If this option is used twice, the second will override the previous use.
  348. .IP "--ftp-create-dirs"
  349. (FTP/SFTP) When an FTP or SFTP URL/operation uses a path that doesn't
  350. currently exist on the server, the standard behavior of curl is to
  351. fail. Using this option, curl will instead attempt to create missing
  352. directories.
  353. .IP "--ftp-method [method]"
  354. (FTP) Control what method curl should use to reach a file on a FTP(S)
  355. server. The method argument should be one of the following alternatives:
  356. .RS
  357. .IP multicwd
  358. curl does a single CWD operation for each path part in the given URL. For deep
  359. hierarchies this means very many commands. This is how RFC1738 says it should
  360. be done. This is the default but the slowest behavior.
  361. .IP nocwd
  362. curl does no CWD at all. curl will do SIZE, RETR, STOR etc and give a full
  363. path to the server for all these commands. This is the fastest behavior.
  364. .IP singlecwd
  365. curl does one CWD with the full target directory and then operates on the file
  366. &"normally" (like in the multicwd case). This is somewhat more standards
  367. compliant than 'nocwd' but without the full penalty of 'multicwd'.
  368. .RE
  369. (Added in 7.15.1)
  370. .IP "--ftp-pasv"
  371. (FTP) Use PASV when transferring. PASV is the internal default behavior, but
  372. using this option can be used to override a previous --ftp-port option. (Added
  373. in 7.11.0)
  374. If this option is used several times, the following occurrences make no
  375. difference. Undoing an enforced PASV really isn't doable but you must then
  376. instead enforce the correct EPRT again.
  377. .IP "--ftp-alternative-to-user <command>"
  378. (FTP) If authenticating with the USER and PASS commands fails, send this
  379. command.  When connecting to Tumbleweed's Secure Transport server over FTPS
  380. using a client certificate, using "SITE AUTH" will tell the server to retrieve
  381. the username from the certificate. (Added in 7.15.5)
  382. .IP "--ftp-skip-pasv-ip"
  383. (FTP) Tell curl to not use the IP address the server suggests in its response
  384. to curl's PASV command when curl connects the data connection. Instead curl
  385. will re-use the same IP address it already uses for the control
  386. connection. (Added in 7.14.2)
  387. This option has no effect if PORT, EPRT or EPSV is used instead of PASV.
  388. .IP "--ftp-ssl"
  389. (FTP) Try to use SSL/TLS for the FTP connection.  Reverts to a non-secure
  390. connection if the server doesn't support SSL/TLS.  See also
  391. fI--ftp-ssl-controlfP and fI--ftp-ssl-reqdfP for different levels of
  392. encryption required. (Added in 7.11.0)
  393. .IP "--ftp-ssl-control"
  394. (FTP) Require SSL/TLS for the FTP login, clear for transfer.  Allows secure
  395. authentication, but non-encrypted data transfers for efficiency.  Fails the
  396. transfer if the server doesn't support SSL/TLS.  (Added in 7.16.0)
  397. .IP "--ftp-ssl-reqd"
  398. (FTP) Require SSL/TLS for the FTP connection.
  399. Terminates the connection if the server doesn't support SSL/TLS.
  400. (Added in 7.15.5)
  401. .IP "--ftp-ssl-ccc"
  402. (FTP) Use CCC (Clear Command Channel)
  403. Shuts down the SSL/TLS layer after authenticating. The rest of the
  404. control channel communication will be unencrypted. This allows
  405. NAT routers to follow the FTP transaction. The default mode is
  406. passive. See --ftp-ssl-ccc-mode for other modes.
  407. (Added in 7.16.1)
  408. .IP "--ftp-ssl-ccc-mode [active/passive]"
  409. (FTP) Use CCC (Clear Command Channel)
  410. Sets the CCC mode. The passive mode will not initiate the shutdown, but
  411. instead wait for the server to do it, and will not reply to the
  412. shutdown from the server. The active mode initiates the shutdown and
  413. waits for a reply from the server.
  414. (Added in 7.16.2)
  415. .IP "-F/--form <name=content>"
  416. (HTTP) This lets curl emulate a filled-in form in which a user has pressed the
  417. submit button. This causes curl to POST data using the Content-Type
  418. multipart/form-data according to RFC1867. This enables uploading of binary
  419. files etc. To force the 'content' part to be a file, prefix the file name
  420. with an @ sign. To just get the content part from a file, prefix the file name
  421. with the symbol <. The difference between @ and < is then that @ makes a file
  422. get attached in the post as a file upload, while the < makes a text field and
  423. just get the contents for that text field from a file.
  424. Example, to send your password file to the server, where
  425. &'password' is the name of the form-field to which /etc/passwd will be the
  426. input:
  427. fBcurlfP -F password=@/etc/passwd www.mypasswords.com
  428. To read the file's content from stdin instead of a file, use - where the file
  429. name should've been. This goes for both @ and < constructs.
  430. You can also tell curl what Content-Type to use by using 'type=', in a manner
  431. similar to:
  432. fBcurlfP -F "web=@index.html;type=text/html" url.com
  433. or
  434. fBcurlfP -F "name=daniel;type=text/foo" url.com
  435. You can also explicitly change the name field of an file upload part by
  436. setting filename=, like this:
  437. fBcurlfP -F "file=@localfile;filename=nameinpost" url.com
  438. See further examples and details in the MANUAL.
  439. This option can be used multiple times.
  440. .IP "--form-string <name=string>"
  441. (HTTP) Similar to fI--formfP except that the value string for the named
  442. parameter is used literally. Leading &'@' and &'<' characters, and the
  443. &';type=' string in the value have no special meaning. Use this in preference
  444. to fI--formfP if there's any possibility that the string value may
  445. accidentally trigger the &'@' or &'<' features of fI--formfP.
  446. .IP "-g/--globoff"
  447. This option switches off the "URL globbing parser". When you set this option,
  448. you can specify URLs that contain the letters {}[] without having them being
  449. interpreted by curl itself. Note that these letters are not normal legal URL
  450. contents but they should be encoded according to the URI standard.
  451. .IP "-G/--get"
  452. When used, this option will make all data specified with fI-d/--datafP or
  453. fI--data-binaryfP to be used in a HTTP GET request instead of the POST
  454. request that otherwise would be used. The data will be appended to the URL
  455. with a '?' separator.
  456. If used in combination with -I, the POST data will instead be appended to the
  457. URL with a HEAD request.
  458. If this option is used several times, the following occurrences make no
  459. difference. This is because undoing a GET doesn't make sense, but you should
  460. then instead enforce the alternative method you prefer.
  461. .IP "-h/--help"
  462. Usage help.
  463. .IP "-H/--header <header>"
  464. (HTTP) Extra header to use when getting a web page. You may specify any number
  465. of extra headers. Note that if you should add a custom header that has the
  466. same name as one of the internal ones curl would use, your externally set
  467. header will be used instead of the internal one. This allows you to make even
  468. trickier stuff than curl would normally do. You should not replace internally
  469. set headers without knowing perfectly well what you're doing. Remove an
  470. internal header by giving a replacement without content on the right side of
  471. the colon, as in: -H &"Host:".
  472. curl will make sure that each header you add/replace is sent with the proper
  473. end-of-line marker, you should thus fBnotfP add that as a part of the header
  474. content: do not add newlines or carriage returns, they will only mess things up
  475. for you.
  476. See also the fI-A/--user-agentfP and fI-e/--refererfP options.
  477. This option can be used multiple times to add/replace/remove multiple headers.
  478. .IP "--hostpubmd5 <md5>"
  479. Pass a string containing 32 hexadecimal digits. The string should be the 128
  480. bit MD5 checksum of the remote host's public key, curl will refuse the
  481. connection with the host unless the md5sums match. This option is only for SCP
  482. and SFTP transfers. (Added in 7.17.1)
  483. .IP "--ignore-content-length"
  484. (HTTP)
  485. Ignore the Content-Length header. This is particularly useful for servers
  486. running Apache 1.x, which will report incorrect Content-Length for files
  487. larger than 2 gigabytes.
  488. .IP "-i/--include"
  489. (HTTP) Include the HTTP-header in the output. The HTTP-header includes things
  490. like server-name, date of the document, HTTP-version and more...
  491. .IP "--interface <name>"
  492. Perform an operation using a specified interface. You can enter interface
  493. name, IP address or host name. An example could look like:
  494.  curl --interface eth0:1 http://www.netscape.com/
  495. If this option is used several times, the last one will be used.
  496. .IP "-I/--head"
  497. (HTTP/FTP/FILE)
  498. Fetch the HTTP-header only! HTTP-servers feature the command HEAD
  499. which this uses to get nothing but the header of a document. When used
  500. on a FTP or FILE file, curl displays the file size and last modification
  501. time only.
  502. .IP "-j/--junk-session-cookies"
  503. (HTTP) When curl is told to read cookies from a given file, this option will
  504. make it discard all "session cookies". This will basically have the same effect
  505. as if a new session is started. Typical browsers always discard session
  506. cookies when they're closed down.
  507. .IP "-k/--insecure"
  508. (SSL) This option explicitly allows curl to perform "insecure" SSL connections
  509. and transfers. All SSL connections are attempted to be made secure by using
  510. the CA certificate bundle installed by default. This makes all connections
  511. considered "insecure" fail unless fI-k/--insecurefP is used.
  512. See this online resource for further details:
  513. fBhttp://curl.haxx.se/docs/sslcerts.htmlfP
  514. .IP "--keepalive-time <seconds>"
  515. This option sets the time a connection needs to remain idle before sending
  516. keepalive probes and the time between individual keepalive probes. It is
  517. currently effective on operating systems offering the TCP_KEEPIDLE and
  518. TCP_KEEPINTVL socket options (meaning Linux, recent AIX, HP-UX and more). This
  519. option has no effect if fI--no-keepalivefP is used. (Added in 7.18.0)
  520. If this option is used multiple times, the last occurrence sets the amount.
  521. .IP "--key <key>"
  522. (SSL/SSH) Private key file name. Allows you to provide your private key in this
  523. separate file.
  524. If this option is used several times, the last one will be used.
  525. .IP "--key-type <type>"
  526. (SSL) Private key file type. Specify which type your fI--keyfP provided
  527. private key is. DER, PEM, and ENG are supported. If not specified, PEM is
  528. assumed.
  529. If this option is used several times, the last one will be used.
  530. .IP "--krb <level>"
  531. (FTP) Enable Kerberos authentication and use. The level must be entered and
  532. should be one of 'clear', 'safe', 'confidential', or 'private'. Should you use
  533. a level that is not one of these, 'private' will instead be used.
  534. This option requires a library built with kerberos4 or GSSAPI
  535. (GSS-Negotiate) support. This is not very common. Use fI-V/--versionfP to
  536. see if your curl supports it.
  537. If this option is used several times, the last one will be used.
  538. .IP "-K/--config <config file>"
  539. Specify which config file to read curl arguments from. The config file is a
  540. text file in which command line arguments can be written which then will be
  541. used as if they were written on the actual command line. Options and their
  542. parameters must be specified on the same config file line, separated by
  543. whitespace, colon, the equals sign or any combination thereof (however,
  544. the preferred separator is the equals sign). If the parameter is to contain
  545. whitespace, the parameter must be enclosed within quotes. Within double
  546. quotes, the following escape sequences are available: \\, \", \t, \n,
  547. \r and \v. A backslash preceding any other letter is ignored. If the
  548. first column of a config line is a '#' character, the rest of the line will be
  549. treated as a comment. Only write one option per physical line in the config
  550. file.
  551. Specify the filename to -K/--config as '-' to make curl read the file from
  552. stdin.
  553. Note that to be able to specify a URL in the config file, you need to specify
  554. it using the fI--urlfP option, and not by simply writing the URL on its own
  555. line. So, it could look similar to this:
  556. url = "http://curl.haxx.se/docs/"
  557. Long option names can optionally be given in the config file without the
  558. initial double dashes.
  559. When curl is invoked, it always (unless fI-qfP is used) checks for a default
  560. config file and uses it if found. The default config file is checked for in
  561. the following places in this order:
  562. 1) curl tries to find the "home dir": It first checks for the CURL_HOME and
  563. then the HOME environment variables. Failing that, it uses getpwuid() on
  564. UNIX-like systems (which returns the home dir given the current user in your
  565. system). On Windows, it then checks for the APPDATA variable, or as a last
  566. resort the '%USERPROFILE%\Application Data'.
  567. 2) On windows, if there is no _curlrc file in the home dir, it checks for one
  568. in the same dir the curl executable is placed. On UNIX-like systems, it will
  569. simply try to load .curlrc from the determined home dir.
  570. .nf
  571. # --- Example file ---
  572. # this is a comment
  573. url = "curl.haxx.se"
  574. output = "curlhere.html"
  575. user-agent = "superagent/1.0"
  576. # and fetch another URL too
  577. url = "curl.haxx.se/docs/manpage.html"
  578. -O
  579. referer = "http://nowhereatall.com/"
  580. # --- End of example file ---
  581. .fi
  582. This option can be used multiple times to load multiple config files.
  583. .IP "--libcurl <file>"
  584. Append this option to any ordinary curl command line, and you will get a
  585. libcurl-using source code written to the file that does the equivalent
  586. of what your command-line operation does!
  587. NOTE: this does not properly support -F and the sending of multipart
  588. formposts, so in those cases the output program will be missing necessary
  589. calls to fIcurl_formadd(3)fP, and possibly more.
  590. If this option is used several times, the last given file name will be
  591. used. (Added in 7.16.1)
  592. .IP "--limit-rate <speed>"
  593. Specify the maximum transfer rate you want curl to use. This feature is useful
  594. if you have a limited pipe and you'd like your transfer not to use your entire
  595. bandwidth.
  596. The given speed is measured in bytes/second, unless a suffix is appended.
  597. Appending 'k' or 'K' will count the number as kilobytes, 'm' or M' makes it
  598. megabytes, while 'g' or 'G' makes it gigabytes. Examples: 200K, 3m and 1G.
  599. The given rate is the average speed counted during the entire transfer. It
  600. means that curl might use higher transfer speeds in short bursts, but over
  601. time it uses no more than the given rate.
  602. If you also use the fI-Y/--speed-limitfP option, that option will take
  603. precedence and might cripple the rate-limiting slightly, to help keeping the
  604. speed-limit logic working.
  605. If this option is used several times, the last one will be used.
  606. .IP "-l/--list-only"
  607. (FTP)
  608. When listing an FTP directory, this switch forces a name-only view.
  609. Especially useful if you want to machine-parse the contents of an FTP
  610. directory since the normal directory view doesn't use a standard look
  611. or format.
  612. This option causes an FTP NLST command to be sent.  Some FTP servers
  613. list only files in their response to NLST; they do not include
  614. subdirectories and symbolic links.
  615. .IP "--local-port <num>[-num]"
  616. Set a preferred number or range of local port numbers to use for the
  617. connection(s).  Note that port numbers by nature are a scarce resource that
  618. will be busy at times so setting this range to something too narrow might
  619. cause unnecessary connection setup failures. (Added in 7.15.2)
  620. .IP "-L/--location"
  621. (HTTP/HTTPS) If the server reports that the requested page has moved to a
  622. different location (indicated with a Location: header and a 3XX response code),
  623. this option will make curl redo the request on the new place. If used together
  624. with fI-i/--includefP or fI-I/--headfP, headers from all requested pages
  625. will be shown. When authentication is used, curl only sends its credentials to
  626. the initial host. If a redirect takes curl to a different host, it won't be
  627. able to intercept the user+password. See also fI--location-trustedfP on how
  628. to change this. You can limit the amount of redirects to follow by using the
  629. fI--max-redirsfP option.
  630. When curl follows a redirect and the request is not a plain GET (for example
  631. POST or PUT), it will do the following request with a GET if the HTTP response
  632. was 301, 302, or 303. If the response code was any other 3xx code, curl will
  633. re-send the following request using the same unmodified method.
  634. .IP "--location-trusted"
  635. (HTTP/HTTPS) Like fI-L/--locationfP, but will allow sending the name +
  636. password to all hosts that the site may redirect to. This may or may not
  637. introduce a security breach if the site redirects you to a site to which
  638. you'll send your authentication info (which is plaintext in the case of HTTP
  639. Basic authentication).
  640. .IP "--max-filesize <bytes>"
  641. Specify the maximum size (in bytes) of a file to download. If the file
  642. requested is larger than this value, the transfer will not start and curl will
  643. return with exit code 63.
  644. fBNOTE:fP The file size is not always known prior to download, and for such files
  645. this option has no effect even if the file transfer ends up being larger than
  646. this given limit. This concerns both FTP and HTTP transfers.
  647. .IP "-m/--max-time <seconds>"
  648. Maximum time in seconds that you allow the whole operation to take.  This is
  649. useful for preventing your batch jobs from hanging for hours due to slow
  650. networks or links going down.  See also the fI--connect-timeoutfP option.
  651. If this option is used several times, the last one will be used.
  652. .IP "-M/--manual"
  653. Manual. Display the huge help text.
  654. .IP "-n/--netrc"
  655. Makes curl scan the fI.netrcfP (fI_netrcfP on Windows) file in the user's
  656. home directory for login name and password. This is typically used for FTP on
  657. UNIX. If used with HTTP, curl will enable user authentication. See
  658. .BR netrc(4)
  659. or
  660. .BR ftp(1)
  661. for details on the file format. Curl will not complain if that file
  662. doesn't have the right permissions (it should not be either world- or
  663. group-readable). The environment variable "HOME" is used to find the home
  664. directory.
  665. A quick and very simple example of how to setup a fI.netrcfP to allow curl
  666. to FTP to the machine host.domain.com with user name &'myself' and password
  667. &'secret' should look similar to:
  668. .B "machine host.domain.com login myself password secret"
  669. .IP "--netrc-optional"
  670. Very similar to fI--netrcfP, but this option makes the .netrc usage
  671. fBoptionalfP and not mandatory as the fI--netrcfP option does.
  672. .IP "--negotiate"
  673. (HTTP) Enables GSS-Negotiate authentication. The GSS-Negotiate method was
  674. designed by Microsoft and is used in their web applications. It is primarily
  675. meant as a support for Kerberos5 authentication but may be also used along
  676. with another authentication method. For more information see IETF draft
  677. draft-brezak-spnego-http-04.txt.
  678. If you want to enable Negotiate for your proxy authentication, then use
  679. fI--proxy-negotiatefP.
  680. This option requires a library built with GSSAPI support. This is
  681. not very common. Use fI-V/--versionfP to see if your version supports
  682. GSS-Negotiate.
  683. When using this option, you must also provide a fake -u/--user option to
  684. activate the authentication code properly. Sending a '-u :' is enough as the
  685. user name and password from the -u option aren't actually used.
  686. If this option is used several times, the following occurrences make no
  687. difference.
  688. .IP "-N/--no-buffer"
  689. Disables the buffering of the output stream. In normal work situations, curl
  690. will use a standard buffered output stream that will have the effect that it
  691. will output the data in chunks, not necessarily exactly when the data arrives.
  692. Using this option will disable that buffering.
  693. Note that this is the negated option name documented. You can thus use
  694. fI--bufferfP to enforce the buffering.
  695. .IP "--no-keepalive"
  696. Disables the use of keepalive messages on the TCP connection, as by default
  697. curl enables them.
  698. Note that this is the negated option name documented. You can thus use
  699. fI--keepalivefP to enforce keepalive.
  700. .IP "--no-sessionid"
  701. (SSL) Disable curl's use of SSL session-ID caching.  By default all transfers
  702. are done using the cache. Note that while nothing should ever get hurt by
  703. attempting to reuse SSL session-IDs, there seem to be broken SSL
  704. implementations in the wild that may require you to disable this in order for
  705. you to succeed. (Added in 7.16.0)
  706. Note that this is the negated option name documented. You can thus use
  707. fI--sessionidfP to enforce session-ID caching.
  708. .IP "--ntlm"
  709. (HTTP) Enables NTLM authentication. The NTLM authentication method was
  710. designed by Microsoft and is used by IIS web servers. It is a proprietary
  711. protocol, reverse-engineered by clever people and implemented in curl based
  712. on their efforts. This kind of behavior should not be endorsed, you should
  713. encourage everyone who uses NTLM to switch to a public and documented
  714. authentication method instead, such as Digest.
  715. If you want to enable NTLM for your proxy authentication, then use
  716. fI--proxy-ntlmfP.
  717. This option requires a library built with SSL support. Use
  718. fI-V/--versionfP to see if your curl supports NTLM.
  719. If this option is used several times, the following occurrences make no
  720. difference.
  721. .IP "-o/--output <file>"
  722. Write output to <file> instead of stdout. If you are using {} or [] to fetch
  723. multiple documents, you can use '#' followed by a number in the <file>
  724. specifier. That variable will be replaced with the current string for the URL
  725. being fetched. Like in:
  726.   curl http://{one,two}.site.com -o "file_#1.txt"
  727. or use several variables like:
  728.   curl http://{site,host}.host[1-5].com -o "#1_#2"
  729. You may use this option as many times as the number of URLs you have.
  730. See also the fI--create-dirsfP option to create the local directories
  731. dynamically.
  732. .IP "-O/--remote-name"
  733. Write output to a local file named like the remote file we get. (Only the file
  734. part of the remote file is used, the path is cut off.)
  735. The remote file name to use for saving is extracted from the given URL,
  736. nothing else.
  737. You may use this option as many times as the number of URLs you have.
  738. .IP "--remote-name-all"
  739. This option changes the default action for all given URLs to be dealt with as
  740. if fI-O/--remote-namefP were used for each one. So if you want to disable
  741. that for a specific URL after fI--remote-name-allfP has been used, you must
  742. use "-o -" or fI--no-remote-namefP. (Added in 7.19.0)
  743. .IP "--pass <phrase>"
  744. (SSL/SSH) Passphrase for the private key
  745. If this option is used several times, the last one will be used.
  746. .IP "--post301"
  747. Tells curl to respect RFC 2616/10.3.2 and not convert POST requests into GET
  748. requests when following a 301 redirection. The non-RFC behaviour is ubiquitous
  749. in web browsers, so curl does the conversion by default to maintain
  750. consistency. However, a server may require a POST to remain a POST after such
  751. a redirection. This option is meaningful only when using fI-L/--locationfP
  752. (Added in 7.17.1)
  753. .IP "--post302"
  754. Tells curl to respect RFC 2616/10.3.2 and not convert POST requests into GET
  755. requests when following a 302 redirection. The non-RFC behaviour is ubiquitous
  756. in web browsers, so curl does the conversion by default to maintain
  757. consistency. However, a server may requires a POST to remain a POST after such
  758. a redirection. This option is meaningful only when using fI-L/--locationfP
  759. (Added in 7.19.1)
  760. .IP "--proxy-anyauth"
  761. Tells curl to pick a suitable authentication method when communicating with
  762. the given proxy. This might cause an extra request/response round-trip. (Added
  763. in 7.13.2)
  764. .IP "--proxy-basic"
  765. Tells curl to use HTTP Basic authentication when communicating with the given
  766. proxy. Use fI--basicfP for enabling HTTP Basic with a remote host. Basic is
  767. the default authentication method curl uses with proxies.
  768. .IP "--proxy-digest"
  769. Tells curl to use HTTP Digest authentication when communicating with the given
  770. proxy. Use fI--digestfP for enabling HTTP Digest with a remote host.
  771. .IP "--proxy-negotiate"
  772. Tells curl to use HTTP Negotiate authentication when communicating
  773. with the given proxy. Use fI--negotiatefP for enabling HTTP Negotiate
  774. with a remote host. (Added in 7.17.1)
  775. .IP "--proxy-ntlm"
  776. Tells curl to use HTTP NTLM authentication when communicating with the given
  777. proxy. Use fI--ntlmfP for enabling NTLM with a remote host.
  778. .IP "-p/--proxytunnel"
  779. When an HTTP proxy is used (fI-x/--proxyfP), this option will cause non-HTTP
  780. protocols to attempt to tunnel through the proxy instead of merely using it to
  781. do HTTP-like operations. The tunnel approach is made with the HTTP proxy
  782. CONNECT request and requires that the proxy allows direct connect to the
  783. remote port number curl wants to tunnel through to.
  784. .IP "--pubkey <key>"
  785. (SSH) Public key file name. Allows you to provide your public key in this
  786. separate file.
  787. If this option is used several times, the last one will be used.
  788. .IP "-P/--ftp-port <address>"
  789. (FTP) Reverses the initiator/listener roles when connecting with FTP. This
  790. switch makes Curl use the PORT command instead of PASV. In practice, PORT
  791. tells the server to connect to the client's specified address and port, while
  792. PASV asks the server for an IP address and port to connect to. <address>
  793. should be one of:
  794. .RS
  795. .IP interface
  796. i.e "eth0" to specify which interface's IP address you want to use (Unix only)
  797. .IP "IP address"
  798. i.e "192.168.10.1" to specify the exact IP address
  799. .IP "host name"
  800. i.e "my.host.domain" to specify the machine
  801. .IP "-"
  802. make curl pick the same IP address that is already used for the control
  803. connection
  804. .RE
  805. If this option is used several times, the last one will be used. Disable the
  806. use of PORT with fI--ftp-pasvfP. Disable the attempt to use the EPRT command
  807. instead of PORT by using fI--disable-eprtfP. EPRT is really PORT++.
  808. .IP "-q"
  809. If used as the first parameter on the command line, the fIcurlrcfP config
  810. file will not be read and used. See the fI-K/--configfP for details on the
  811. default config file search path.
  812. .IP "-Q/--quote <command>"
  813. (FTP/SFTP) Send an arbitrary command to the remote FTP or SFTP server. Quote
  814. commands are sent BEFORE the transfer takes place (just after the
  815. initial PWD command in an FTP transfer, to be exact). To make commands
  816. take place after a successful transfer, prefix them with a dash '-'.
  817. To make commands be sent after libcurl has changed the working directory,
  818. just before the transfer command(s), prefix the command with a '+' (this
  819. is only supported for FTP). You may specify any number of commands. If
  820. the server returns failure for one of the commands, the entire operation
  821. will be aborted. You must send syntactically correct FTP commands as
  822. RFC959 defines to FTP servers, or one of the commands listed below to
  823. SFTP servers.  This option can be used multiple times.
  824. SFTP is a binary protocol. Unlike for FTP, libcurl interprets SFTP quote
  825. commands before sending them to the server.  Following is the list of
  826. all supported SFTP quote commands:
  827. .RS
  828. .IP "chgrp group file"
  829. The chgrp command sets the group ID of the file named by the file operand to the
  830. group ID specified by the group operand. The group operand is a decimal
  831. integer group ID.
  832. .IP "chmod mode file"
  833. The chmod command modifies the file mode bits of the specified file. The
  834. mode operand is an octal integer mode number.
  835. .IP "chown user file"
  836. The chown command sets the owner of the file named by the file operand to the
  837. user ID specified by the user operand. The user operand is a decimal
  838. integer user ID.
  839. .IP "ln source_file target_file"
  840. The ln and symlink commands create a symbolic link at the target_file location
  841. pointing to the source_file location.
  842. .IP "mkdir directory_name"
  843. The mkdir command creates the directory named by the directory_name operand.
  844. .IP "pwd"
  845. The pwd command returns the absolute pathname of the current working directory.
  846. .IP "rename source target"
  847. The rename command renames the file or directory named by the source
  848. operand to the destination path named by the target operand.
  849. .IP "rm file"
  850. The rm command removes the file specified by the file operand.
  851. .IP "rmdir directory"
  852. The rmdir command removes the directory entry specified by the directory
  853. operand, provided it is empty.
  854. .IP "symlink source_file target_file"
  855. See ln.
  856. .RE
  857. .IP "--random-file <file>"
  858. (SSL) Specify the path name to file containing what will be considered as
  859. random data. The data is used to seed the random engine for SSL connections.
  860. See also the fI--egd-filefP option.
  861. .IP "-r/--range <range>"
  862. (HTTP/FTP/SFTP/FILE) Retrieve a byte range (i.e a partial document) from a
  863. HTTP/1.1, FTP or SFTP server or a local FILE. Ranges can be specified
  864. in a number of ways.
  865. .RS
  866. .TP 10
  867. .B 0-499
  868. specifies the first 500 bytes
  869. .TP
  870. .B 500-999
  871. specifies the second 500 bytes
  872. .TP
  873. .B -500
  874. specifies the last 500 bytes
  875. .TP
  876. .B 9500-
  877. specifies the bytes from offset 9500 and forward
  878. .TP
  879. .B 0-0,-1
  880. specifies the first and last byte only(*)(H)
  881. .TP
  882. .B 500-700,600-799
  883. specifies 300 bytes from offset 500(H)
  884. .TP
  885. .B 100-199,500-599
  886. specifies two separate 100-byte ranges(*)(H)
  887. .RE
  888. (*) = NOTE that this will cause the server to reply with a multipart
  889. response!
  890. Only digit characters (0-9) are valid in the 'start' and 'stop' fields of
  891. the &'start-stop' range syntax. If a non-digit character is given in the range, the server's
  892. response will be unspecified, depending on the server's configuration.
  893. You should also be aware that many HTTP/1.1 servers do not have this feature
  894. enabled, so that when you attempt to get a range, you'll instead get the whole
  895. document.
  896. FTP and SFTP range downloads only support the simple 'start-stop' syntax
  897. (optionally with one of the numbers omitted). FTP use depends on the extended
  898. FTP command SIZE.
  899. If this option is used several times, the last one will be used.
  900. .IP "--raw"
  901. When used, it disables all internal HTTP decoding of content or transfer
  902. encodings and instead makes them passed on unaltered, raw. (Added in 7.16.2)
  903. .IP "-R/--remote-time"
  904. When used, this will make libcurl attempt to figure out the timestamp of the
  905. remote file, and if that is available make the local file get that same
  906. timestamp.
  907. .IP "--retry <num>"
  908. If a transient error is returned when curl tries to perform a transfer, it
  909. will retry this number of times before giving up. Setting the number to 0
  910. makes curl do no retries (which is the default). Transient error means either:
  911. a timeout, an FTP 5xx response code or an HTTP 5xx response code.
  912. When curl is about to retry a transfer, it will first wait one second and then
  913. for all forthcoming retries it will double the waiting time until it reaches
  914. 10 minutes which then will be the delay between the rest of the retries.  By
  915. using fI--retry-delayfP you disable this exponential backoff algorithm. See
  916. also fI--retry-max-timefP to limit the total time allowed for
  917. retries. (Added in 7.12.3)
  918. If this option is used multiple times, the last occurrence decide the amount.
  919. .IP "--retry-delay <seconds>"
  920. Make curl sleep this amount of time before each retry when a transfer has
  921. failed with a transient error (it changes the default backoff time algorithm
  922. between retries). This option is only interesting if fI--retryfP is also
  923. used. Setting this delay to zero will make curl use the default backoff time.
  924. (Added in 7.12.3)
  925. If this option is used multiple times, the last occurrence determines the amount.
  926. .IP "--retry-max-time <seconds>"
  927. The retry timer is reset before the first transfer attempt. Retries will be
  928. done as usual (see fI--retryfP) as long as the timer hasn't reached this
  929. given limit. Notice that if the timer hasn't reached the limit, the request
  930. will be made and while performing, it may take longer than this given time
  931. period. To limit a single request's maximum time, use fI-m/--max-timefP.
  932. Set this option to zero to not timeout retries. (Added in 7.12.3)
  933. If this option is used multiple times, the last occurrence determines the
  934. amount.
  935. .IP "-s/--silent"
  936. Silent mode. Don't show progress meter or error messages.  Makes
  937. Curl mute.
  938. .IP "-S/--show-error"
  939. When used with -s it makes curl show an error message if it fails.
  940. .IP "--socks4 <host[:port]>"
  941. Use the specified SOCKS4 proxy. If the port number is not specified, it is
  942. assumed at port 1080. (Added in 7.15.2)
  943. This option overrides any previous use of fI-x/--proxyfP, as they are
  944. mutually exclusive.
  945. If this option is used several times, the last one will be used.
  946. .IP "--socks4a <host[:port]>"
  947. Use the specified SOCKS4a proxy. If the port number is not specified, it is
  948. assumed at port 1080. (Added in 7.18.0)
  949. This option overrides any previous use of fI-x/--proxyfP, as they are
  950. mutually exclusive.
  951. If this option is used several times, the last one will be used.
  952. .IP "--socks5-hostname <host[:port]>"
  953. Use the specified SOCKS5 proxy (and let the proxy resolve the host name). If
  954. the port number is not specified, it is assumed at port 1080. (Added in
  955. 7.18.0)
  956. This option overrides any previous use of fI-x/--proxyfP, as they are
  957. mutually exclusive.
  958. If this option is used several times, the last one will be used. (This option
  959. was previously wrongly documented and used as --socks without the number
  960. appended.)
  961. .IP "--socks5 <host[:port]>"
  962. Use the specified SOCKS5 proxy - but resolve the host name locally. If the
  963. port number is not specified, it is assumed at port 1080.
  964. This option overrides any previous use of fI-x/--proxyfP, as they are
  965. mutually exclusive.
  966. If this option is used several times, the last one will be used. (This option
  967. was previously wrongly documented and used as --socks without the number
  968. appended.)
  969. .IP "--stderr <file>"
  970. Redirect all writes to stderr to the specified file instead. If the file name
  971. is a plain '-', it is instead written to stdout. This option has no point when
  972. you're using a shell with decent redirecting capabilities.
  973. If this option is used several times, the last one will be used.
  974. .IP "--tcp-nodelay"
  975. Turn on the TCP_NODELAY option. See the fIcurl_easy_setopt(3)fP man page for
  976. details about this option. (Added in 7.11.2)
  977. .IP "-t/--telnet-option <OPT=val>"
  978. Pass options to the telnet protocol. Supported options are:
  979. TTYPE=<term> Sets the terminal type.
  980. XDISPLOC=<X display> Sets the X display location.
  981. NEW_ENV=<var,val> Sets an environment variable.
  982. .IP "-T/--upload-file <file>"
  983. This transfers the specified local file to the remote URL. If there is no file
  984. part in the specified URL, Curl will append the local file name. NOTE that you
  985. must use a trailing / on the last directory to really prove to Curl that there
  986. is no file name or curl will think that your last directory name is the remote
  987. file name to use. That will most likely cause the upload operation to fail. If
  988. this is used on a HTTP(S) server, the PUT command will be used.
  989. Use the file name "-" (a single dash) to use stdin instead of a given file.
  990. You can specify one -T for each URL on the command line. Each -T + URL pair
  991. specifies what to upload and to where. curl also supports "globbing" of the -T
  992. argument, meaning that you can upload multiple files to a single URL by using
  993. the same URL globbing style supported in the URL, like this:
  994. curl -T "{file1,file2}" http://www.uploadtothissite.com
  995. or even
  996. curl -T "img[1-1000].png" ftp://ftp.picturemania.com/upload/
  997. .IP "--trace <file>"
  998. Enables a full trace dump of all incoming and outgoing data, including
  999. descriptive information, to the given output file. Use "-" as filename to have
  1000. the output sent to stdout.
  1001. This option overrides previous uses of fI-v/--verbosefP or
  1002. fI--trace-asciifP.
  1003. If this option is used several times, the last one will be used.
  1004. .IP "--trace-ascii <file>"
  1005. Enables a full trace dump of all incoming and outgoing data, including
  1006. descriptive information, to the given output file. Use "-" as filename to have
  1007. the output sent to stdout.
  1008. This is very similar to fI--tracefP, but leaves out the hex part and only
  1009. shows the ASCII part of the dump. It makes smaller output that might be easier
  1010. to read for untrained humans.
  1011. This option overrides previous uses of fI-v/--verbosefP or fI--tracefP.
  1012. If this option is used several times, the last one will be used.
  1013. .IP "--trace-time"
  1014. Prepends a time stamp to each trace or verbose line that curl displays.
  1015. (Added in 7.14.0)
  1016. .IP "-u/--user <user:password>"
  1017. Specify the user name and password to use for server authentication. Overrides
  1018. fI-n/--netrcfP and fI--netrc-optionalfP.
  1019. If you just give the user name (without entering a colon) curl will prompt for
  1020. a password.
  1021. If you use an SSPI-enabled curl binary and do NTLM authentication, you can
  1022. force curl to pick up the user name and password from your environment by
  1023. simply specifying a single colon with this option: "-u :".
  1024. If this option is used several times, the last one will be used.
  1025. .IP "-U/--proxy-user <user:password>"
  1026. Specify the user name and password to use for proxy authentication.
  1027. If you use an SSPI-enabled curl binary and do NTLM authentication, you can
  1028. force curl to pick up the user name and password from your environment by
  1029. simply specifying a single colon with this option: "-U :".
  1030. If this option is used several times, the last one will be used.
  1031. .IP "--url <URL>"
  1032. Specify a URL to fetch. This option is mostly handy when you want to specify
  1033. URL(s) in a config file.
  1034. This option may be used any number of times. To control where this URL is
  1035. written, use the fI-o/--outputfP or the fI-O/--remote-namefP options.
  1036. .IP "-v/--verbose"
  1037. Makes the fetching more verbose/talkative. Mostly useful for debugging. A line
  1038. starting with '>' means "header data" sent by curl, '<' means "header data"
  1039. received by curl that is hidden in normal cases, and a line starting with '*'
  1040. means additional info provided by curl.
  1041. Note that if you only want HTTP headers in the output, fI-i/--includefP
  1042. might be the option you're looking for.
  1043. If you think this option still doesn't give you enough details, consider using
  1044. fI--tracefP or fI--trace-asciifP instead.
  1045. This option overrides previous uses of fI--trace-asciifP or fI--tracefP.
  1046. .IP "-V/--version"
  1047. Displays information about curl and the libcurl version it uses.
  1048. The first line includes the full version of curl, libcurl and other 3rd party
  1049. libraries linked with the executable.
  1050. The second line (starts with "Protocols:") shows all protocols that libcurl
  1051. reports to support.
  1052. The third line (starts with "Features:") shows specific features libcurl
  1053. reports to offer. Available features include:
  1054. .RS
  1055. .IP "IPv6"
  1056. You can use IPv6 with this.
  1057. .IP "krb4"
  1058. Krb4 for FTP is supported.
  1059. .IP "SSL"
  1060. HTTPS and FTPS are supported.
  1061. .IP "libz"
  1062. Automatic decompression of compressed files over HTTP is supported.
  1063. .IP "NTLM"
  1064. NTLM authentication is supported.
  1065. .IP "GSS-Negotiate"
  1066. Negotiate authentication and krb5 for FTP is supported.
  1067. .IP "Debug"
  1068. This curl uses a libcurl built with Debug. This enables more error-tracking
  1069. and memory debugging etc. For curl-developers only!
  1070. .IP "AsynchDNS"
  1071. This curl uses asynchronous name resolves.
  1072. .IP "SPNEGO"
  1073. SPNEGO Negotiate authentication is supported.
  1074. .IP "Largefile"
  1075. This curl supports transfers of large files, files larger than 2GB.
  1076. .IP "IDN"
  1077. This curl supports IDN - international domain names.
  1078. .IP "SSPI"
  1079. SSPI is supported. If you use NTLM and set a blank user name, curl will
  1080. authenticate with your current user and password.
  1081. .RE
  1082. .IP "-w/--write-out <format>"
  1083. Defines what to display on stdout after a completed and successful
  1084. operation. The format is a string that may contain plain text mixed with any
  1085. number of variables. The string can be specified as "string", to get read from
  1086. a particular file you specify it "@filename" and to tell curl to read the
  1087. format from stdin you write "@-".
  1088. The variables present in the output format will be substituted by the value or
  1089. text that curl thinks fit, as described below. All variables are specified
  1090. as %{variable_name} and to output a normal % you just write them as
  1091. %%. You can output a newline by using \n, a carriage return with \r and a tab
  1092. space with \t.
  1093. .B NOTE:
  1094. The %-symbol is a special symbol in the win32-environment, where all
  1095. occurrences of % must be doubled when using this option.
  1096. The variables available at this point are:
  1097. .RS
  1098. .TP 15
  1099. .B url_effective
  1100. The URL that was fetched last. This is most meaningful if you've told curl
  1101. to follow location: headers.
  1102. .TP
  1103. .B http_code
  1104. The numerical response code that was found in the last retrieved HTTP(S) or
  1105. FTP(s) transfer. In 7.18.2 the alias fBresponse_codefP was added to show the
  1106. same info.
  1107. .TP
  1108. .B http_connect
  1109. The numerical code that was found in the last response (from a proxy) to a
  1110. curl CONNECT request. (Added in 7.12.4)
  1111. .TP
  1112. .B time_total
  1113. The total time, in seconds, that the full operation lasted. The time will be
  1114. displayed with millisecond resolution.
  1115. .TP
  1116. .B time_namelookup
  1117. The time, in seconds, it took from the start until the name resolving was
  1118. completed.
  1119. .TP
  1120. .B time_connect
  1121. The time, in seconds, it took from the start until the TCP connect to the
  1122. remote host (or proxy) was completed.
  1123. .TP
  1124. .B time_appconnect
  1125. The time, in seconds, it took from the start until the SSL/SSH/etc
  1126. connect/handshake to the remote host was completed. (Added in 7.19.0)
  1127. .TP
  1128. .B time_pretransfer
  1129. The time, in seconds, it took from the start until the file transfer was just
  1130. about to begin. This includes all pre-transfer commands and negotiations that
  1131. are specific to the particular protocol(s) involved.
  1132. .TP
  1133. .B time_redirect
  1134. The time, in seconds, it took for all redirection steps include name lookup,
  1135. connect, pretransfer and transfer before the final transaction was
  1136. started. time_redirect shows the complete execution time for multiple
  1137. redirections. (Added in 7.12.3)
  1138. .TP
  1139. .B time_starttransfer
  1140. The time, in seconds, it took from the start until the first byte was just about
  1141. to be transferred. This includes time_pretransfer and also the time the
  1142. server needed to calculate the result.
  1143. .TP
  1144. .B size_download
  1145. The total amount of bytes that were downloaded.
  1146. .TP
  1147. .B size_upload
  1148. The total amount of bytes that were uploaded.
  1149. .TP
  1150. .B size_header
  1151. The total amount of bytes of the downloaded headers.
  1152. .TP
  1153. .B size_request
  1154. The total amount of bytes that were sent in the HTTP request.
  1155. .TP
  1156. .B speed_download
  1157. The average download speed that curl measured for the complete download.
  1158. .TP
  1159. .B speed_upload
  1160. The average upload speed that curl measured for the complete upload.
  1161. .TP
  1162. .B content_type
  1163. The Content-Type of the requested document, if there was any.
  1164. .TP
  1165. .B num_connects
  1166. Number of new connects made in the recent transfer. (Added in 7.12.3)
  1167. .TP
  1168. .B num_redirects
  1169. Number of redirects that were followed in the request. (Added in 7.12.3)
  1170. .TP
  1171. .B redirect_url
  1172. When a HTTP request was made without -L to follow redirects, this variable
  1173. will show the actual URL a redirect fIwouldfP take you to. (Added in 7.18.2)
  1174. .TP
  1175. .B ftp_entry_path
  1176. The initial path libcurl ended up in when logging on to the remote FTP
  1177. server. (Added in 7.15.4)
  1178. .TP
  1179. .B ssl_verify_result
  1180. The result of the SSL peer certificate verification that was requested. 0
  1181. means the verification was successful. (Added in 7.19.0)
  1182. .RE
  1183. If this option is used several times, the last one will be used.
  1184. .IP "-x/--proxy <proxyhost[:port]>"
  1185. Use the specified HTTP proxy. If the port number is not specified, it is assumed
  1186. at port 1080.
  1187. This option overrides existing environment variables that set the proxy to
  1188. use. If there's an environment variable setting a proxy, you can set proxy to
  1189. &"" to override it.
  1190. fBNotefP that all operations that are performed over a HTTP proxy will
  1191. transparently be converted to HTTP. It means that certain protocol specific
  1192. operations might not be available. This is not the case if you can tunnel
  1193. through the proxy, as done with the fI-p/--proxytunnelfP option.
  1194. Starting with 7.14.1, the proxy host can be specified the exact same way as
  1195. the proxy environment variables, including the protocol prefix (http://) and
  1196. the embedded user + password.
  1197. If this option is used several times, the last one will be used.
  1198. .IP "-X/--request <command>"
  1199. (HTTP) Specifies a custom request method to use when communicating with the
  1200. HTTP server.  The specified request will be used instead of the method
  1201. otherwise used (which defaults to GET). Read the HTTP 1.1 specification for
  1202. details and explanations.
  1203. (FTP)
  1204. Specifies a custom FTP command to use instead of LIST when doing file lists
  1205. with FTP.
  1206. If this option is used several times, the last one will be used.
  1207. .IP "-y/--speed-time <time>"
  1208. If a download is slower than speed-limit bytes per second during a speed-time
  1209. period, the download gets aborted. If speed-time is used, the default
  1210. speed-limit will be 1 unless set with -Y.
  1211. This option controls transfers and thus will not affect slow connects etc. If
  1212. this is a concern for you, try the fI--connect-timeoutfP option.
  1213. If this option is used several times, the last one will be used.
  1214. .IP "-Y/--speed-limit <speed>"
  1215. If a download is slower than this given speed (in bytes per second) for
  1216. speed-time seconds it gets aborted. speed-time is set with -y and is 30 if
  1217. not set.
  1218. If this option is used several times, the last one will be used.
  1219. .IP "-z/--time-cond <date expression>"
  1220. (HTTP/FTP) Request a file that has been modified later than the given time and
  1221. date, or one that has been modified before that time. The date expression can
  1222. be all sorts of date strings or if it doesn't match any internal ones, it
  1223. tries to get the time from a given file name instead! See the
  1224. fIcurl_getdate(3)fP man pages for date expression details.
  1225. Start the date expression with a dash (-) to make it request for a document
  1226. that is older than the given date/time, default is a document that is newer
  1227. than the specified date/time.
  1228. If this option is used several times, the last one will be used.
  1229. .IP "--max-redirs <num>"
  1230. Set maximum number of redirection-followings allowed. If fI-L/--locationfP
  1231. is used, this option can be used to prevent curl from following redirections
  1232. &"in absurdum". By default, the limit is set to 50 redirections. Set this
  1233. option to -1 to make it limitless.
  1234. If this option is used several times, the last one will be used.
  1235. .IP "-0/--http1.0"
  1236. (HTTP) Forces curl to issue its requests using HTTP 1.0 instead of using its
  1237. internally preferred: HTTP 1.1.
  1238. .IP "-1/--tlsv1"
  1239. (SSL)
  1240. Forces curl to use TLS version 1 when negotiating with a remote TLS server.
  1241. .IP "-2/--sslv2"
  1242. (SSL)
  1243. Forces curl to use SSL version 2 when negotiating with a remote SSL server.
  1244. .IP "-3/--sslv3"
  1245. (SSL)
  1246. Forces curl to use SSL version 3 when negotiating with a remote SSL server.
  1247. .IP "-4/--ipv4"
  1248. If libcurl is capable of resolving an address to multiple IP versions (which
  1249. it is if it is IPv6-capable), this option tells libcurl to resolve names to
  1250. IPv4 addresses only.
  1251. .IP "-6/--ipv6"
  1252. If libcurl is capable of resolving an address to multiple IP versions (which
  1253. it is if it is IPv6-capable), this option tells libcurl to resolve names to
  1254. IPv6 addresses only.
  1255. .IP "-#/--progress-bar"
  1256. Make curl display progress information as a progress bar instead of the
  1257. default statistics.
  1258. .SH FILES
  1259. .I ~/.curlrc
  1260. .RS
  1261. Default config file, see fI-K/--configfP for details.
  1262. .SH ENVIRONMENT
  1263. .IP "http_proxy [protocol://]<host>[:port]"
  1264. Sets the proxy server to use for HTTP.
  1265. .IP "HTTPS_PROXY [protocol://]<host>[:port]"
  1266. Sets the proxy server to use for HTTPS.
  1267. .IP "FTP_PROXY [protocol://]<host>[:port]"
  1268. Sets the proxy server to use for FTP.
  1269. .IP "ALL_PROXY [protocol://]<host>[:port]"
  1270. Sets the proxy server to use if no protocol-specific proxy is set.
  1271. .IP "NO_PROXY <comma-separated list of hosts>"
  1272. list of host names that shouldn't go through any proxy. If set to a asterisk
  1273. &'*' only, it matches all hosts.
  1274. .SH EXIT CODES
  1275. There are a bunch of different error codes and their corresponding error
  1276. messages that may appear during bad conditions. At the time of this writing,
  1277. the exit codes are:
  1278. .IP 1
  1279. Unsupported protocol. This build of curl has no support for this protocol.
  1280. .IP 2
  1281. Failed to initialize.
  1282. .IP 3
  1283. URL malformed. The syntax was not correct.
  1284. .IP 5
  1285. Couldn't resolve proxy. The given proxy host could not be resolved.
  1286. .IP 6
  1287. Couldn't resolve host. The given remote host was not resolved.
  1288. .IP 7
  1289. Failed to connect to host.
  1290. .IP 8
  1291. FTP weird server reply. The server sent data curl couldn't parse.
  1292. .IP 9
  1293. FTP access denied. The server denied login or denied access to the particular
  1294. resource or directory you wanted to reach. Most often you tried to change to a
  1295. directory that doesn't exist on the server.
  1296. .IP 11
  1297. FTP weird PASS reply. Curl couldn't parse the reply sent to the PASS request.
  1298. .IP 13
  1299. FTP weird PASV reply, Curl couldn't parse the reply sent to the PASV request.
  1300. .IP 14
  1301. FTP weird 227 format. Curl couldn't parse the 227-line the server sent.
  1302. .IP 15
  1303. FTP can't get host. Couldn't resolve the host IP we got in the 227-line.
  1304. .IP 17
  1305. FTP couldn't set binary. Couldn't change transfer method to binary.
  1306. .IP 18
  1307. Partial file. Only a part of the file was transferred.
  1308. .IP 19
  1309. FTP couldn't download/access the given file, the RETR (or similar) command
  1310. failed.
  1311. .IP 21
  1312. FTP quote error. A quote command returned error from the server.
  1313. .IP 22
  1314. HTTP page not retrieved. The requested url was not found or returned another
  1315. error with the HTTP error code being 400 or above. This return code only
  1316. appears if fI-f/--failfP is used.
  1317. .IP 23
  1318. Write error. Curl couldn't write data to a local filesystem or similar.
  1319. .IP 25
  1320. FTP couldn't STOR file. The server denied the STOR operation, used for FTP
  1321. uploading.
  1322. .IP 26
  1323. Read error. Various reading problems.
  1324. .IP 27
  1325. Out of memory. A memory allocation request failed.
  1326. .IP 28
  1327. Operation timeout. The specified time-out period was reached according to the
  1328. conditions.
  1329. .IP 30
  1330. FTP PORT failed. The PORT command failed. Not all FTP servers support the PORT
  1331. command, try doing a transfer using PASV instead!
  1332. .IP 31
  1333. FTP couldn't use REST. The REST command failed. This command is used for
  1334. resumed FTP transfers.
  1335. .IP 33
  1336. HTTP range error. The range "command" didn't work.
  1337. .IP 34
  1338. HTTP post error. Internal post-request generation error.
  1339. .IP 35
  1340. SSL connect error. The SSL handshaking failed.
  1341. .IP 36
  1342. FTP bad download resume. Couldn't continue an earlier aborted download.
  1343. .IP 37
  1344. FILE couldn't read file. Failed to open the file. Permissions?
  1345. .IP 38
  1346. LDAP cannot bind. LDAP bind operation failed.
  1347. .IP 39
  1348. LDAP search failed.
  1349. .IP 41
  1350. Function not found. A required LDAP function was not found.
  1351. .IP 42
  1352. Aborted by callback. An application told curl to abort the operation.
  1353. .IP 43
  1354. Internal error. A function was called with a bad parameter.
  1355. .IP 45
  1356. Interface error. A specified outgoing interface could not be used.
  1357. .IP 47
  1358. Too many redirects. When following redirects, curl hit the maximum amount.
  1359. .IP 48
  1360. Unknown TELNET option specified.
  1361. .IP 49
  1362. Malformed telnet option.
  1363. .IP 51
  1364. The peer's SSL certificate or SSH MD5 fingerprint was not ok.
  1365. .IP 52
  1366. The server didn't reply anything, which here is considered an error.
  1367. .IP 53
  1368. SSL crypto engine not found.
  1369. .IP 54
  1370. Cannot set SSL crypto engine as default.
  1371. .IP 55
  1372. Failed sending network data.
  1373. .IP 56
  1374. Failure in receiving network data.
  1375. .IP 58
  1376. Problem with the local certificate.
  1377. .IP 59
  1378. Couldn't use specified SSL cipher.
  1379. .IP 60
  1380. Peer certificate cannot be authenticated with known CA certificates.
  1381. .IP 61
  1382. Unrecognized transfer encoding.
  1383. .IP 62
  1384. Invalid LDAP URL.
  1385. .IP 63
  1386. Maximum file size exceeded.
  1387. .IP 64
  1388. Requested FTP SSL level failed.
  1389. .IP 65
  1390. Sending the data requires a rewind that failed.
  1391. .IP 66
  1392. Failed to initialise SSL Engine.
  1393. .IP 67
  1394. The user name, password, or similar was not accepted and curl failed to log in.
  1395. .IP 68
  1396. File not found on TFTP server.
  1397. .IP 69
  1398. Permission problem on TFTP server.
  1399. .IP 70
  1400. Out of disk space on TFTP server.
  1401. .IP 71
  1402. Illegal TFTP operation.
  1403. .IP 72
  1404. Unknown TFTP transfer ID.
  1405. .IP 73
  1406. File already exists (TFTP).
  1407. .IP 74
  1408. No such user (TFTP).
  1409. .IP 75
  1410. Character conversion failed.
  1411. .IP 76
  1412. Character conversion functions required.
  1413. .IP 77
  1414. Problem with reading the SSL CA cert (path? access rights?).
  1415. .IP 78
  1416. The resource referenced in the URL does not exist.
  1417. .IP 79
  1418. An unspecified error occurred during the SSH session.
  1419. .IP 80
  1420. Failed to shut down the SSL connection.
  1421. .IP 82
  1422. Could not load CRL file, missing or wrong format (added in 7.19.0).
  1423. .IP 83
  1424. Issuer check failed (added in 7.19.0).
  1425. .IP XX
  1426. More error codes will appear here in future releases. The existing ones
  1427. are meant to never change.
  1428. .SH AUTHORS / CONTRIBUTORS
  1429. Daniel Stenberg is the main author, but the whole list of contributors is
  1430. found in the separate THANKS file.
  1431. .SH WWW
  1432. http://curl.haxx.se
  1433. .SH FTP
  1434. ftp://ftp.sunet.se/pub/www/utilities/curl/
  1435. .SH "SEE ALSO"
  1436. .BR ftp (1),
  1437. .BR wget (1)