Skip to content

Commit

Permalink
Update curl commands to use HTTPS prefix. (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aterfax authored Nov 8, 2024
1 parent a18e1bc commit 4a275bb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This script automates the execution of the best benchmarking tools in the indust
## How to Run

```
curl -sL yabs.sh | bash
curl -sL https://yabs.sh | bash
```

or
Expand All @@ -35,7 +35,7 @@ wget -qO- yabs.sh | bash
### Flags (Skipping Tests, Reducing iperf Locations, Geekbench 4/5/6, etc.)

```
curl -sL yabs.sh | bash -s -- -flags
curl -sL https://yabs.sh | bash -s -- -flags
```

| Flag | Description |
Expand Down Expand Up @@ -64,7 +64,7 @@ Options can be grouped together to skip multiple tests, i.e. `-fg` to skip the d
Results from running this script can be sent to your benchmark results website of choice in JSON format. Invoke the `-s` flag and pass the URL to where the results should be submitted to:

```
curl -sL yabs.sh | bash -s -- -s "https://example.com/yabs/post"
curl -sL https://yabs.sh | bash -s -- -s "https://example.com/yabs/post"
```

JSON results can be sent to multiple endpoints by entering each site joined by a comma (e.g. "https://example.com/yabs/post,http://example.com/yabs2/post").
Expand All @@ -73,8 +73,8 @@ Sites supporting submission of YABS JSON results:

| Website | Example Command |
| --- | --- |
| [YABSdb](https://yabsdb.com/) | `curl -sL yabs.sh \| bash -s -- -s "https://yabsdb.com/add"` |
| [VPSBenchmarks](https://www.vpsbenchmarks.com/yabs/get_started) | `curl -sL yabs.sh \| bash -s -- -s https://www.vpsbenchmarks.com/yabs/upload` |
| [YABSdb](https://yabsdb.com/) | `curl -sL https://yabs.sh \| bash -s -- -s "https://yabsdb.com/add"` |
| [VPSBenchmarks](https://www.vpsbenchmarks.com/yabs/get_started) | `curl -sL https://yabs.sh \| bash -s -- -s https://www.vpsbenchmarks.com/yabs/upload` |

Example JSON output: [example.json](bin/example.json).

Expand Down

0 comments on commit 4a275bb

Please sign in to comment.