diff options
author | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-02-13 19:22:29 -0500 |
---|---|---|
committer | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-02-14 15:03:11 -0500 |
commit | a7a691809a3125cce691c7934a98a2511b9cb6db (patch) | |
tree | 0858caddc0d93f7a8fe2ae4f3654a822c97ec66f /cmd/podman/pod_rm.go | |
parent | dd82acd8ba02be51ec5fea65584e1f7b2036d7c8 (diff) | |
download | podman-a7a691809a3125cce691c7934a98a2511b9cb6db.tar.gz podman-a7a691809a3125cce691c7934a98a2511b9cb6db.tar.bz2 podman-a7a691809a3125cce691c7934a98a2511b9cb6db.zip |
Add examples for Cobra
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
First pass of entries for the Examples listed in the Cobra
Help. Will add others in following PR's.
Diffstat (limited to 'cmd/podman/pod_rm.go')
-rw-r--r-- | cmd/podman/pod_rm.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/podman/pod_rm.go b/cmd/podman/pod_rm.go index 389f44a20..54cee2a50 100644 --- a/cmd/podman/pod_rm.go +++ b/cmd/podman/pod_rm.go @@ -26,7 +26,9 @@ If --force is specified, all containers will be stopped, then removed. podRmCommand.GlobalFlags = MainGlobalOpts return podRmCmd(&podRmCommand) }, - Example: "[POD ...]", + Example: `podman pod rm mywebserverpod + podman pod rm -f 860a4b23 + podman pod rm -f -a`, } ) |