diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2020-01-26 12:43:26 -0500 |
---|---|---|
committer | Robert P. J. Day <rpjday@crashcourse.ca> | 2020-01-26 12:43:26 -0500 |
commit | bb66d78b2fd0bbf6faca58eccbf5ed56656d2efd (patch) | |
tree | 6a09324d67acca3c015e0b36cca2401f848f8791 /docs/source/markdown/podman-container-exists.1.md | |
parent | d7e99b04b98b44ec3710ef2b47b316b55101835c (diff) | |
download | podman-bb66d78b2fd0bbf6faca58eccbf5ed56656d2efd.tar.gz podman-bb66d78b2fd0bbf6faca58eccbf5ed56656d2efd.tar.bz2 podman-bb66d78b2fd0bbf6faca58eccbf5ed56656d2efd.zip |
docs: remove reference to "sudo" in "podman exists" examples
In both of "podman {container,image} exists" man pages, there
are superfluous uses of "sudo" in examples -- get rid of them.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Diffstat (limited to 'docs/source/markdown/podman-container-exists.1.md')
-rw-r--r-- | docs/source/markdown/podman-container-exists.1.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/source/markdown/podman-container-exists.1.md b/docs/source/markdown/podman-container-exists.1.md index 4d988132b..3b4ca33e4 100644 --- a/docs/source/markdown/podman-container-exists.1.md +++ b/docs/source/markdown/podman-container-exists.1.md @@ -21,7 +21,7 @@ Print usage statement Check if an container called `webclient` exists in local storage (the container does actually exist). ``` -$ sudo podman container exists webclient +$ podman container exists webclient $ echo $? 0 $ @@ -29,7 +29,7 @@ $ Check if an container called `webbackend` exists in local storage (the container does not actually exist). ``` -$ sudo podman container exists webbackend +$ podman container exists webbackend $ echo $? 1 $ |