diff options
author | Ed Santiago <santiago@redhat.com> | 2019-02-26 14:11:27 -0700 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2019-02-26 18:10:36 -0700 |
commit | a20ff42134e0b4e3ba9d26c25d93df50e637fd69 (patch) | |
tree | c823944460b9b2c06f87b2db31a2b970ad76652a /cmd/podman/exists.go | |
parent | ee667dcf97df4ed38b2046b33911dad882829bf8 (diff) | |
download | podman-a20ff42134e0b4e3ba9d26c25d93df50e637fd69.tar.gz podman-a20ff42134e0b4e3ba9d26c25d93df50e637fd69.tar.bz2 podman-a20ff42134e0b4e3ba9d26c25d93df50e637fd69.zip |
Better usage synopses for subcommands
Conceptually simple: include, where applicable, a brief
description of command-line options for each subcommand.
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'cmd/podman/exists.go')
-rw-r--r-- | cmd/podman/exists.go | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/cmd/podman/exists.go b/cmd/podman/exists.go index 74a4c841b..c01a6a081 100644 --- a/cmd/podman/exists.go +++ b/cmd/podman/exists.go @@ -32,7 +32,7 @@ var ( Check if a pod exists in local storage ` _imageExistsCommand = &cobra.Command{ - Use: "exists", + Use: "exists IMAGE", Short: "Check if an image exists in local storage", Long: imageExistsDescription, RunE: func(cmd *cobra.Command, args []string) error { @@ -44,7 +44,7 @@ var ( } _containerExistsCommand = &cobra.Command{ - Use: "exists", + Use: "exists CONTAINER", Short: "Check if a container exists in local storage", Long: containerExistsDescription, RunE: func(cmd *cobra.Command, args []string) error { @@ -57,7 +57,7 @@ var ( } _podExistsCommand = &cobra.Command{ - Use: "exists", + Use: "exists POD", Short: "Check if a pod exists in local storage", Long: podExistsDescription, RunE: func(cmd *cobra.Command, args []string) error { @@ -71,10 +71,13 @@ var ( func init() { imageExistsCommand.Command = _imageExistsCommand + imageExistsCommand.DisableFlagsInUseLine = true imageExistsCommand.SetUsageTemplate(UsageTemplate()) containerExistsCommand.Command = _containerExistsCommand + containerExistsCommand.DisableFlagsInUseLine = true containerExistsCommand.SetUsageTemplate(UsageTemplate()) podExistsCommand.Command = _podExistsCommand + podExistsCommand.DisableFlagsInUseLine = true podExistsCommand.SetUsageTemplate(UsageTemplate()) } |