diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2020-03-23 06:18:22 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2020-04-09 05:38:07 +0000 |
commit | 1a67db047e6d5473ed6327d58c25cdf96134df5f (patch) | |
tree | 1989d5315fe7943581855752b5da2a2a8cb6200a | |
parent | d72a9df041bd25df6f6acb28eed5cbb044a89c51 (diff) |
cli: improve --help output for --modem and --sim options
Specify the full list of supported object lookup methods.
-rw-r--r-- | cli/mmcli-common.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/mmcli-common.c b/cli/mmcli-common.c index c072d220..59498caf 100644 --- a/cli/mmcli-common.c +++ b/cli/mmcli-common.c @@ -1498,16 +1498,16 @@ static gchar *call_str; static GOptionEntry entries[] = { { "modem", 'm', 0, G_OPTION_ARG_STRING, &modem_str, - "Specify modem by path or index. Shows modem information if no action specified.", - "[PATH|INDEX]" + "Specify modem by path, index, UID or 'any'. Shows modem information if no action specified.", + "[PATH|INDEX|UID|any]" }, { "bearer", 'b', 0, G_OPTION_ARG_STRING, &bearer_str, "Specify bearer by path or index. Shows bearer information if no action specified.", "[PATH|INDEX]" }, { "sim", 'i', 0, G_OPTION_ARG_STRING, &sim_str, - "Specify SIM card by path or index. Shows SIM card information if no action specified.", - "[PATH|INDEX]" + "Specify SIM card by path, index, UID or 'any'. Shows SIM card information if no action specified.", + "[PATH|INDEX|UID|any]" }, { "sms", 's', 0, G_OPTION_ARG_STRING, &sms_str, "Specify SMS by path or index. Shows SMS information if no action specified.", |