diff options
author | Valentin Rothberg <vrothberg@suse.com> | 2018-08-30 13:05:37 +0200 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-08-30 16:51:56 +0000 |
commit | 1c0cd0796abd4230dbab1f7ed33212c78ecce11f (patch) | |
tree | 63d0740d08e4a6fea0f4178f4107bdfd923e146c /docs/podman-import.1.md | |
parent | 1243bfa6f14ed6cfb21e7db965e52bb7ddafd1f0 (diff) | |
download | podman-1c0cd0796abd4230dbab1f7ed33212c78ecce11f.tar.gz podman-1c0cd0796abd4230dbab1f7ed33212c78ecce11f.tar.bz2 podman-1c0cd0796abd4230dbab1f7ed33212c78ecce11f.zip |
docs: consistent format for example
All bash examples are now placed in a code section (```). The PS1
prompt is set to `$`.
Signed-off-by: Valentin Rothberg <vrothberg@suse.com>
Closes: #1375
Approved by: rhatdan
Diffstat (limited to 'docs/podman-import.1.md')
-rw-r--r-- | docs/podman-import.1.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/podman-import.1.md b/docs/podman-import.1.md index b1176cee9..c80c4ff77 100644 --- a/docs/podman-import.1.md +++ b/docs/podman-import.1.md @@ -40,7 +40,7 @@ Print usage statement ## EXAMPLES ``` -# podman import --change CMD=/bin/bash --change ENTRYPOINT=/bin/sh --change LABEL=blue=image ctr.tar image-imported +$ podman import --change CMD=/bin/bash --change ENTRYPOINT=/bin/sh --change LABEL=blue=image ctr.tar image-imported Getting image source signatures Copying blob sha256:b41deda5a2feb1f03a5c1bb38c598cbc12c9ccd675f438edc6acd815f7585b86 25.80 MB / 25.80 MB [======================================================] 0s @@ -52,12 +52,12 @@ db65d991f3bbf7f31ed1064db9a6ced7652e3f8166c4736aa9133dadd3c7acb3 ``` ``` -# cat ctr.tar | podman -q import --message "importing the ctr.tar tarball" - image-imported +$ cat ctr.tar | podman -q import --message "importing the ctr.tar tarball" - image-imported db65d991f3bbf7f31ed1064db9a6ced7652e3f8166c4736aa9133dadd3c7acb3 ``` ``` -# cat ctr.tar | podman import - +$ cat ctr.tar | podman import - Getting image source signatures Copying blob sha256:b41deda5a2feb1f03a5c1bb38c598cbc12c9ccd675f438edc6acd815f7585b86 25.80 MB / 25.80 MB [======================================================] 0s @@ -69,7 +69,7 @@ db65d991f3bbf7f31ed1064db9a6ced7652e3f8166c4736aa9133dadd3c7acb3 ``` ``` -podman import http://example.com/ctr.tar url-image +$ podman import http://example.com/ctr.tar url-image Downloading from "http://example.com/ctr.tar" Getting image source signatures Copying blob sha256:b41deda5a2feb1f03a5c1bb38c598cbc12c9ccd675f438edc6acd815f7585b86 |