``` A stupid wrapper around meilisearch
USAGE:
mieli [OPTIONS]
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-a, --addr
SUBCOMMANDS:
add Add documents with the post
verb You can pipe your documents in the command
delete Delete documents. If no argument are specified all documents are deleted
dump Create a dump or get the status of a dump
get Get one document. If no argument are specified it returns all documents
health Do an healthcheck
help Prints this message or the help of the given subcommand(s)
search Do a search. You must pipe your parameter in the command as a json
settings Update the settings. You must pipe your parameter in the command as a json
stats Return the stats about the indexes
status Return the status of an update
update Replace documents with the put
verb You can pipe your documents in the command
version Return the version of the running meilisearch instance
```
bash
cargo install mieli
bash
echo '[{ "id": 1, "content": "I love gaspacho" }]' | mieli -i cook add
```bash
echo '{}' | mieli -i cook search
echo '{ "q": "gaspacho" }' | mieli -i cook search ```