Skip to content

Commit

Permalink
Add -n to example invoke commands
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Gee <[email protected]>
  • Loading branch information
rgee0 authored and alexellis committed Mar 8, 2019
1 parent 718b183 commit b04aae2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Invoke via `curl` or `faas-cli invoke`:

```
$ URL=https://upload.wikimedia.org/wikipedia/commons/6/61/Humpback_Whale_underwater_shot.jpg \
echo $URL | faas-cli invoke inception
echo -n $URL | faas-cli invoke inception
[{"name": "great white shark", "score": 0.5343291759490967}, {"name": "tiger shark", "score": 0.09276486188173294}, {"name": "grey whale", "score": 0.05899052694439888}, {"name": "sea lion", "score": 0.05105864629149437}, {"name": "hammerhead", "score": 0.019910583272576332}, {"name": "sturgeon", "score": 0.013177040033042431}, {"name": "stingray", "score": 0.00763126602396369}, {"name": "electric ray", "score": 0.006749240681529045}, {"name": "killer whale", "score": 0.005086909048259258}, {"name": "ice bear", "score": 0.003828041721135378}]
```
Expand All @@ -30,7 +30,7 @@ $ URL=https://upload.wikimedia.org/wikipedia/commons/6/61/Humpback_Whale_underwa

```
$ URL=https://upload.wikimedia.org/wikipedia/commons/6/61/Humpback_Whale_underwater_shot.jpg \
echo $URL | faas-cli invoke inception \
echo -n $URL | faas-cli invoke inception \
| jq '.[] | select(.score > 0.05)'
{
Expand Down

0 comments on commit b04aae2

Please sign in to comment.