From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45773) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1flVjB-0005zT-EL for qemu-devel@nongnu.org; Fri, 03 Aug 2018 04:46:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1flVjA-0002Sb-IJ for qemu-devel@nongnu.org; Fri, 03 Aug 2018 04:46:29 -0400 Date: Fri, 3 Aug 2018 16:46:20 +0800 From: Fam Zheng Message-ID: <20180803084620.GE16395@lemon.usersys.redhat.com> References: <20180803005015.5116-1-programmingkidx@gmail.com> <20180803021036.GB16395@lemon.usersys.redhat.com> <12064535-0CD5-4762-B437-5E640C4A13C1@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <12064535-0CD5-4762-B437-5E640C4A13C1@gmail.com> Subject: Re: [Qemu-devel] [PATCH] qemu-img.c: Add examples section List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Programmingkid Cc: kwolf@redhat.com, mreitz@redhat.com, qemu-block@nongnu.org, qemu-devel@nongnu.org On Thu, 08/02 22:34, Programmingkid wrote: > > > On Aug 2, 2018, at 10:10 PM, Fam Zheng wrote: > > > > On Thu, 08/02 20:50, John Arbuckle wrote: > >> Add an examples section to the help output. > >> > >> Signed-off-by: John Arbuckle > >> --- > >> qemu-img.c | 11 +++++++++++ > >> 1 file changed, 11 insertions(+) > >> > >> diff --git a/qemu-img.c b/qemu-img.c > >> index 1acddf693c..f77c82695d 100644 > >> --- a/qemu-img.c > >> +++ b/qemu-img.c > >> @@ -199,6 +199,17 @@ static void QEMU_NORETURN help(void) > >> > >> printf("%s\nSupported formats:", help_msg); > >> bdrv_iterate_format(format_print, NULL); > >> + > >> + printf("\n\nExamples:\n\n" > >> + "Create: qemu-img create -f qcow2 image.qcow2 10G\n\n" > >> + "Info: qemu-img info image.qcow2\n\n" > >> + "Resize: qemu-img resize image.qcow2 20G\n\n" > >> + "Convert: qemu-img convert -f raw -O qcow2 image.img image.qcow2\n\n" > >> + "Check: qemu-img check image.qcow2\n\n" > >> + "Map: qemu-img map -f qcow2 --output=human image.qcow2\n\n" > >> + "Rebase: qemu-img rebase -b new_backing_file.qcow2 image.qcow2" > >> + ); > > > > The text looks good but maybe it's better to condense the section by using only > > one \n between command lines instead of two? > > > > Fam > > It would be harder on the user's eyes if I did that. This is objective, but being compact is more consistent in density with the above "Command syntax" section in this function. Fam