diff options
author | Erik Sjölund <erik.sjolund@gmail.com> | 2020-07-23 20:51:37 +0200 |
---|---|---|
committer | Erik Sjölund <erik.sjolund@gmail.com> | 2020-07-23 20:51:37 +0200 |
commit | c10d5a5ebe34d473891b979e57d6145e76246f31 (patch) | |
tree | 6ab3928b3b19b8a01b862e686efdda847f1ff58a /docs/source/markdown/podman-run.1.md | |
parent | 961fa6a6082990276300aaf39834da13183bb88e (diff) | |
download | podman-c10d5a5ebe34d473891b979e57d6145e76246f31.tar.gz podman-c10d5a5ebe34d473891b979e57d6145e76246f31.tar.bz2 podman-c10d5a5ebe34d473891b979e57d6145e76246f31.zip |
Fix exit code example in podman-run.1.md
Signed-off-by: Erik Sjölund <erik.sjolund@gmail.com>
Diffstat (limited to 'docs/source/markdown/podman-run.1.md')
-rw-r--r-- | docs/source/markdown/podman-run.1.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-run.1.md b/docs/source/markdown/podman-run.1.md index 303d025b0..b959b947f 100644 --- a/docs/source/markdown/podman-run.1.md +++ b/docs/source/markdown/podman-run.1.md @@ -1129,7 +1129,7 @@ the exit codes follow the **chroot**(1) standard, see below: **Exit code** _contained command_ exit code - $ podman run busybox /bin/sh -c 'exit 3' + $ podman run busybox /bin/sh -c 'exit 3'; echo $? 3 ## EXAMPLES |