mirror of
https://github.com/masonr/yet-another-bench-script.git
synced 2025-03-18 19:34:04 +00:00
Update curl commands to use HTTPS prefix. (#94)
This commit is contained in:
parent
a18e1bcd60
commit
4a275bbafa
10
README.md
10
README.md
@ -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
|
||||
@ -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 |
|
||||
@ -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").
|
||||
@ -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).
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user