We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3bcc61 commit cacf58dCopy full SHA for cacf58d
cli/device/list.go
@@ -39,12 +39,12 @@ func initListCommand() *cobra.Command {
39
Long: "List devices on Arduino IoT Cloud",
40
Run: runListCommand,
41
}
42
- // list only the devices that have all the passed tags
43
listCommand.Flags().StringToStringVar(
44
&listFlags.tags,
45
"tags",
46
nil,
47
- "List of comma-separated tags. A tag has this format: <key>=<value>",
+ "Comma-separated list of tags with format <key>=<value>.\n"+
+ "List only devices that match the provided tags.",
48
)
49
return listCommand
50
0 commit comments