From ecd7b38022c9311e6929cb80a5ce80abad86dbe9 Mon Sep 17 00:00:00 2001 From: Urvashi Mohnani Date: Thu, 28 Sep 2023 10:51:26 -0400 Subject: [PATCH] [CI:DOCS] Update podman load doc Update podman load doc to mention support for loading in compressed files. Add an example command as well. Signed-off-by: Urvashi Mohnani --- docs/source/markdown/podman-load.1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/markdown/podman-load.1.md b/docs/source/markdown/podman-load.1.md index 8d0efb1a41..91054ecb60 100644 --- a/docs/source/markdown/podman-load.1.md +++ b/docs/source/markdown/podman-load.1.md @@ -32,7 +32,7 @@ Print usage statement #### **--input**, **-i**=*input* -Load the specified input file instead of from stdin. The file can be on the local file system or on a server (e.g., https://server.com/archive.tar) +Load the specified input file instead of from stdin. The file can be on the local file system or on a server (e.g., https://server.com/archive.tar). Also supports loading in compressed files. The remote client, including Mac and Windows (excluding WSL2) machines, requires the use of this option. @@ -45,7 +45,7 @@ Suppress the progress output ## EXAMPLES ``` -$ podman load --quiet -i fedora.tar +$ podman load --quiet -i fedora.tar.gz ``` ```