Skip to content

Commit

Permalink
Add building instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeYallop committed May 27, 2024
1 parent d65d7dd commit d10de07
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,19 @@ WaybackDownloader.exe <matchUrl> <outputDir> -v

## Advanced Example

Here's an example of a more complex use case:

```bash
WaybackDownloader.exe http://example.com ./downloads -m Prefix --from 20200101 --to 20201231 -f !statuscode:404 -p keyword1 -p keyword2 --limitPages 100 -r 10
```

This command will download pages from ‘http://example.com’, save them to the ‘./downloads’ directory, match URLs that start with ‘http://example.com’, only download pages from the year 2020, exclude pages with a 404 status code, only save pages that contain ‘keyword1’ or ‘keyword2’, process a maximum of 100 pages, and download a maximum of 10 pages per second.

## Building

### Prerequisites

* .NET 8.0 SDK or higher

Then, just run the following command:
```
dotnet build
```

0 comments on commit d10de07

Please sign in to comment.