docs/cmdline: change to .md for cmdline docs
- switch all invidual files documenting command line options into .md,
as the documentation is now markdown-looking.
- made the parser treat 4-space indents as quotes
- switch to building the curl.1 manpage using the "mainpage.idx" file,
which lists the files to include to generate it, instead of using the
previous page-footer/headers. Also, those files are now also .md
ones, using the same format. I gave them underscore prefixes to make
them sort separately:
_NAME.md, _SYNOPSIS.md, _DESCRIPTION.md, _URL.md, _GLOBBING.md,
_VARIABLES.md, _OUTPUT.md, _PROTOCOLS.md, _PROGRESS.md, _VERSION.md,
_OPTIONS.md, _FILES.md, _ENVIRONMENT.md, _PROXYPREFIX.md,
_EXITCODES.md, _BUGS.md, _AUTHORS.md, _WWW.md, _SEEALSO.md
- updated test cases accordingly
Closes #12751
2024-01-21 06:18:43 +08:00
|
|
|
---
|
2023-01-02 20:51:48 +08:00
|
|
|
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2022-06-14 06:12:03 +08:00
|
|
|
SPDX-License-Identifier: curl
|
2018-05-28 20:16:27 +08:00
|
|
|
Long: url
|
2016-11-28 08:01:13 +08:00
|
|
|
Arg: <url>
|
|
|
|
Help: URL to work with
|
2020-07-13 20:15:04 +08:00
|
|
|
Category: curl
|
2021-09-28 17:50:07 +08:00
|
|
|
Added: 7.5
|
2022-10-18 16:39:43 +08:00
|
|
|
Multi: append
|
docs/cmdline: change to .md for cmdline docs
- switch all invidual files documenting command line options into .md,
as the documentation is now markdown-looking.
- made the parser treat 4-space indents as quotes
- switch to building the curl.1 manpage using the "mainpage.idx" file,
which lists the files to include to generate it, instead of using the
previous page-footer/headers. Also, those files are now also .md
ones, using the same format. I gave them underscore prefixes to make
them sort separately:
_NAME.md, _SYNOPSIS.md, _DESCRIPTION.md, _URL.md, _GLOBBING.md,
_VARIABLES.md, _OUTPUT.md, _PROTOCOLS.md, _PROGRESS.md, _VERSION.md,
_OPTIONS.md, _FILES.md, _ENVIRONMENT.md, _PROXYPREFIX.md,
_EXITCODES.md, _BUGS.md, _AUTHORS.md, _WWW.md, _SEEALSO.md
- updated test cases accordingly
Closes #12751
2024-01-21 06:18:43 +08:00
|
|
|
See-also:
|
|
|
|
- next
|
|
|
|
- config
|
|
|
|
Example:
|
|
|
|
- --url $URL
|
2016-11-28 08:01:13 +08:00
|
|
|
---
|
docs/cmdline: change to .md for cmdline docs
- switch all invidual files documenting command line options into .md,
as the documentation is now markdown-looking.
- made the parser treat 4-space indents as quotes
- switch to building the curl.1 manpage using the "mainpage.idx" file,
which lists the files to include to generate it, instead of using the
previous page-footer/headers. Also, those files are now also .md
ones, using the same format. I gave them underscore prefixes to make
them sort separately:
_NAME.md, _SYNOPSIS.md, _DESCRIPTION.md, _URL.md, _GLOBBING.md,
_VARIABLES.md, _OUTPUT.md, _PROTOCOLS.md, _PROGRESS.md, _VERSION.md,
_OPTIONS.md, _FILES.md, _ENVIRONMENT.md, _PROXYPREFIX.md,
_EXITCODES.md, _BUGS.md, _AUTHORS.md, _WWW.md, _SEEALSO.md
- updated test cases accordingly
Closes #12751
2024-01-21 06:18:43 +08:00
|
|
|
|
|
|
|
# `--url`
|
|
|
|
|
2024-03-12 17:34:58 +08:00
|
|
|
Specify a URL to fetch.
|
2016-11-28 08:01:13 +08:00
|
|
|
|
2024-02-07 01:07:07 +08:00
|
|
|
If the given URL is missing a scheme name (such as `http://` or `ftp://` etc)
|
2023-09-08 20:32:29 +08:00
|
|
|
then curl makes a guess based on the host. If the outermost subdomain name
|
|
|
|
matches DICT, FTP, IMAP, LDAP, POP3 or SMTP then that protocol is used,
|
|
|
|
otherwise HTTP is used. Guessing can be avoided by providing a full URL
|
2024-06-24 19:57:02 +08:00
|
|
|
including the scheme, or disabled by setting a default protocol, see
|
|
|
|
--proto-default for details.
|
2016-11-28 08:01:13 +08:00
|
|
|
|
2022-10-18 16:39:43 +08:00
|
|
|
To control where this URL is written, use the --output or the --remote-name
|
|
|
|
options.
|
2020-03-09 21:59:21 +08:00
|
|
|
|
2024-02-07 01:07:07 +08:00
|
|
|
**WARNING**: On Windows, particular `file://` accesses can be converted to
|
2021-08-31 22:37:14 +08:00
|
|
|
network accesses by the operating system. Beware!
|