From 68522b3e434515d4ef4fcf94baca72891c962043 Mon Sep 17 00:00:00 2001 From: rogerwelin Date: Thu, 11 Jun 2020 01:04:46 +0200 Subject: [PATCH] update readme to reflect refactoring --- README-ZH.md | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README-ZH.md b/README-ZH.md index e187fa9..acce16a 100644 --- a/README-ZH.md +++ b/README-ZH.md @@ -71,7 +71,7 @@ Summary: 示例:访问外部文件指定的URL路径(外部文件也可以是http路径的) ```bash -$ ./cassowary run-file -u http://localhost:8000 -c 10 -f urlpath.txt +$ ./cassowary run -u http://localhost:8000 -c 10 -f urlpath.txt Starting Load Test with 3925 requests using 10 concurrent users diff --git a/README.md b/README.md index 4b1b7d6..979f472 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Installation Grab a pre-built binary from the [GitHub Releases page](https://github.com/rogerwelin/cassowary/releases). You can optionally put the **cassowary** binary in your `PATH` so you can run cassowary from any location. Alternative you can: -### Homebrew on MAC OSX +### Homebrew on Mac OSX You can install **cassowary** using the Homebrew package manager on Mac: ```bash @@ -107,14 +107,14 @@ Summary: Example running **cassowary** in file slurp mode where all URL paths are specified from an external file (which can also be fetched from http if specified). By default cassowary will, without the -n flag specified, make one request per path specified in the file. However with the -n flag you can also specify how many request you want cassowary to generate against those URL paths. Example: ```bash -$ ./cassowary run-file -u http://localhost:8000 -c 1 -f urlpath.txt +$ ./cassowary run -u http://localhost:8000 -c 1 -f urlpath.txt Starting Load Test with 5 requests using 1 concurrent users [ omitted ] -$ ./cassowary run-file -u http://localhost:8000 -c 10 -n 100 -f urlpath.txt +$ ./cassowary run -u http://localhost:8000 -c 10 -n 100 -f urlpath.txt Starting Load Test with 100 requests using 10 concurrent users