diff options
Diffstat (limited to 'python/mgmt-cli/main.py')
-rwxr-xr-x | python/mgmt-cli/main.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/mgmt-cli/main.py b/python/mgmt-cli/main.py index 2990e25437..4d7c03d1f2 100755 --- a/python/mgmt-cli/main.py +++ b/python/mgmt-cli/main.py @@ -48,11 +48,12 @@ class Mcli (Cmd): print " list - Print summary of existing objects by class" print " list <className> - Print list of objects of the specified class" print " list <className> all - Print contents of all objects of specified class" + print " list <className> active - Print contents of all non-deleted objects of specified class" print " list <className> <list-of-IDs> - Print contents of one or more objects" print " list is space-separated, ranges may be specified (i.e. 1004-1010)" print " call <ID> <methodName> [<args>] - Invoke a method on an object" print " schema - Print summary of object classes seen on the target" - print " schema [className] - Print details of an object class" + print " schema <className> - Print details of an object class" print " set time-format short - Select short timestamp format (default)" print " set time-format long - Select long timestamp format" print " quit or ^D - Exit the program" |