diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2016-12-11 11:06:53 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2016-12-11 12:13:00 +0000 |
commit | 456efbfa13fb43f8394291aa18e878d8d3acbda1 (patch) | |
tree | a3f360ec78170513659113f58cdebccdf5bd96b5 /share/man | |
parent | Removing half-finished multi-address handling in container list command. (diff) | |
download | compute-tools-456efbfa13fb43f8394291aa18e878d8d3acbda1.tar.xz compute-tools-456efbfa13fb43f8394291aa18e878d8d3acbda1.zip |
Adding CSV export format to container list command.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/container-list.1.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/share/man/container-list.1.txt b/share/man/container-list.1.txt index 53603db..3e4498b 100644 --- a/share/man/container-list.1.txt +++ b/share/man/container-list.1.txt @@ -46,8 +46,11 @@ The following container options are available, defaults to *--started --stopped* *-a, --all*:: List all available container (started, stopped, and other). +*--csv-separator='SEPARATOR'*:: + Specify custom CSV separator, defaults to ','. + *-f, --format='FORMAT'*:: - Use format to list container. Currently available formats are 'cli' (default) or 'shell'. + Use format to list container. Currently available formats are 'cli' (default), 'csv', or 'shell'. *-h, --host='HOSTNAME'*:: List only container that are enabled for automatic start on the specified hostname. Defaults to list containers of the local system only. Using 'all' shows all container regardless of any automatic start configuration. @@ -69,6 +72,9 @@ EXAMPLES *List all started and other containers:*:: sudo container list -s -o +*Create a CSV export of all started and stopped containers:*:: + sudo container list -f csv + *Create a shell export of all started and stopped containers:*:: sudo container list -f shell |