Skip to content

Commit 4a275bb

Browse files
authored
Update curl commands to use HTTPS prefix. (masonr#94)
1 parent a18e1bc commit 4a275bb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This script automates the execution of the best benchmarking tools in the indust
1515
## How to Run
1616

1717
```
18-
curl -sL yabs.sh | bash
18+
curl -sL https://yabs.sh | bash
1919
```
2020

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

3737
```
38-
curl -sL yabs.sh | bash -s -- -flags
38+
curl -sL https://yabs.sh | bash -s -- -flags
3939
```
4040

4141
| Flag | Description |
@@ -64,7 +64,7 @@ Options can be grouped together to skip multiple tests, i.e. `-fg` to skip the d
6464
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:
6565

6666
```
67-
curl -sL yabs.sh | bash -s -- -s "https://example.com/yabs/post"
67+
curl -sL https://yabs.sh | bash -s -- -s "https://example.com/yabs/post"
6868
```
6969

7070
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").
@@ -73,8 +73,8 @@ Sites supporting submission of YABS JSON results:
7373

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

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

0 commit comments

Comments
 (0)