```text A stupid wrapper around meilisearch
Usage: mieli [OPTIONS]
Commands:
self Modify the mieli
installation
documents Manipulate documents, add --help
to see all the subcommands
dump Create a dump
tasks Get information about the task of an index
health Do an healthcheck
version Return the version of the running meilisearch instance
stats Return the stats about the indexes
search Do a search. You can pipe your parameter in the command as a json. Or you can specify directly what you want to search in the arguments
settings Get or update the settings. You can pipe your settings in the command
index Manipulate indexes, add --help
to see all the subcommands
key Get the keys
help Print this message or the help of the given subcommand(s)
Options:
-v, --verbose...
-a, --addr mieli search --custom-header "x-meilisearch-client: turbo-doggo/42.9000"
--interval
bash
cargo install mieli
bash
echo '[
{ "id": 1,
"title": "Mieli search his honey pot",
"content": "Mieli, the fat brown bear, was looking for honey in this majestuous forest ..."
}
]' | mieli -i cook documents add
```bash
mieli -i book search
mieli -i book search honey
echo '{ "q": "honey", "limit": 1 }' | mieli -i book search ```
By default all search are interactive. But if you pipe the result of mieli
into another command then the search results are sent immediatly.
bash
mieli -i book search honey | jq '.content'