Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,12 @@ then performs the parsing. May be specified more than once.
wcurl --curl-options="--continue-at -" example.com/filename.txt
```

* Download a list of URLs from a file:

```sh
while read -r url; do wcurl "$url"; done < filename.txt
```
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's an extra space before the backticks, there should be two :)


# Running the testsuite

If you would like to run the tests, you first need to install the
Expand Down
4 changes: 4 additions & 0 deletions wcurl.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ be the last one in the list):

**wcurl --curl-options="--continue-at -" example.com/filename.txt**

Download a list of URLs from a file:

**while read -r url; do wcurl "$url"; done < filename.txt**

# AUTHORS

Samuel Henrique \<[email protected]\>
Expand Down
Loading