refactor: update CLI command usage and improve argument handling

This commit is contained in:
2026-05-10 11:12:12 +02:00
parent ecc96b695e
commit 5ba90c8805
2 changed files with 29 additions and 31 deletions
+4 -4
View File
@@ -51,10 +51,10 @@ export MAILINABOX_PASSWORD=password
Commands:
```sh
miab list [--type TXT]
miab set --name foo.example.com --type TXT --value "hello"
miab add --name foo.example.com --type A --value 1.2.3.4
miab delete --name foo.example.com --type TXT [--value "hello"]
miab list [--type TXT]
miab set [--type TXT] foo.example.com "hello"
miab add [--type A] foo.example.com 1.2.3.4
miab delete [--type TXT] foo.example.com ["hello"]
```
## AI Disclaimer