Lines Matching +full:download +full:- +full:url
8 .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
27 curl \- transfer a URL
43 curl is powered by libcurl for all transfer-related features. See
45 .SH URL
46 The URL syntax is protocol-dependent. You'll find a detailed description in
50 braces and quoting the URL as in:
56 "ftp://ftp.example.com/file[1-100].txt"
58 "ftp://ftp.example.com/file[001-100].txt" (with leading zeros)
60 "ftp://ftp.example.com/file[a-z].txt"
65 "http://example.com/archive[1996-1999]/vol[1-4]/part{a,b,c}.html"
74 "http://example.com/file[1-100:10].txt"
76 "http://example.com/file[a-z:2].txt"
79 probably have to put the full URL within double quotes to avoid the shell from
83 Provide the IPv6 zone index in the URL with an escaped percentage sign and the
88 If you specify URL without protocol:// prefix, curl will attempt to guess what
90 based on often-used host name prefixes. For example, for host names starting
93 curl will do its best to use what you pass to it as a URL. It is not trying to
94 validate it as a syntactically correct URL by any means but is instead
97 curl will attempt to re-use connections for multiple file transfers, so that
104 instructed to instead save that data into a local file, using the --output or
105 --remote-name options. If curl is given multiple URLs to transfer on the
112 curl supports numerous protocols, or put in URL terms: schemes. Your
117 Read or write local files. curl does not support accessing file:// URL
130 Using the mail reading protocol, curl can "download" emails for you. With or
143 and curl can download it.
151 curl supports SMB version 1 for upload and download.
156 Telling curl to fetch a telnet URL starts an interactive session where it
173 redirect the response output to a file, using shell redirect (>), --output or
179 If you prefer a progress "bar" instead of the regular meter, --progress-bar is
181 --silent option.
186 The short "single-dash" form of the options, -d for example, may be used with
188 separator. The long "double-dash" form, --data for example, requires a space
193 options -O, -L and -v at once as -OLv.
195 In general, all boolean options are enabled with --**option** and yet again
196 disabled with --**no-**option. That is, you use the exact same option name
197 but prefix it with "no-". However, in this list we mostly only list and show
198 the --option version of them. (This concept with --no options was added in