-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README: remove HTML <a name> anchors
They serve no purpose. Removing them simplifies the document. GitHub's and others' markdown renderers generate anchors for subtitles by themselves.
- Loading branch information
Showing
1 changed file
with
0 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,17 +12,13 @@ SPDX-License-Identifier: curl | |
**wcurl** | ||
- a simple wrapper around curl to easily download files. | ||
|
||
<a name="synopsis"></a> | ||
|
||
# Synopsis | ||
|
||
wcurl [--curl-options <CURL_OPTIONS>]... [--dry-run] [--] <URL>... | ||
wcurl [--curl-options=<CURL_OPTIONS>]... [--dry-run] [--] <URL>... | ||
wcurl -V|--version | ||
wcurl -h|--help | ||
|
||
<a name="description"></a> | ||
|
||
# Description | ||
|
||
**wcurl** is a simple curl wrapper which lets you use curl to download files | ||
|
@@ -46,8 +42,6 @@ should be using curl directly if your use case is not covered. | |
* Set the downloaded file timestamp to the value provided by the server, if available; | ||
* Disable **curl**'s URL globbing parser so **{}** and **\[\]** characters in URLs are not treated specially. | ||
|
||
<a name="options"></a> | ||
|
||
# Options | ||
|
||
|
||
|
@@ -63,23 +57,17 @@ should be using curl directly if your use case is not covered. | |
* **-h, --help** | ||
Print help message. | ||
|
||
<a name="curl_options"></a> | ||
|
||
# Curl_options | ||
|
||
Any option supported by curl can be set here. | ||
This is not used by **wcurl**; it's instead forwarded to the curl invocation. | ||
|
||
<a name="url"></a> | ||
|
||
# Url | ||
|
||
Anything which is not a parameter will be considered an URL. | ||
**wcurl** will encode whitespaces and pass that to curl, which will perform the | ||
parsing of the URL. | ||
|
||
<a name="examples"></a> | ||
|
||
# Examples | ||
|
||
Download a single file: | ||
|
@@ -94,30 +82,22 @@ Download a file passing the _--progress-bar_ and _--http2_ flags to curl: | |
Resume from an interrupted download (if more options are used, this needs to be the last one in the list): | ||
**wcurl --curl-options="--continue-at -" example.com/filename.txt** | ||
|
||
<a name="authors"></a> | ||
|
||
# Authors | ||
|
||
Samuel Henrique <[[email protected]](mailto:[email protected])> | ||
Sergio Durigan Junior <[[email protected]](mailto:[email protected])> | ||
Ryan Carsten Schmidt <[[email protected]](mailto:[email protected])> | ||
Ben Zanin | ||
|
||
<a name="reporting-bugs"></a> | ||
|
||
# Reporting Bugs | ||
|
||
If you experience any problems with **wcurl** that you do not experience with curl, | ||
submit an issue [here](https://github.com/curl/wcurl/issues). | ||
|
||
<a name="copyright"></a> | ||
|
||
# Copyright | ||
|
||
**wcurl** is licensed under the curl license | ||
|
||
<a name="see-also"></a> | ||
|
||
# See Also | ||
|
||
**curl**(1) |