]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
man pages: update the description for the virsh help command
authorJustin Clift <jclift@redhat.com>
Thu, 2 Dec 2010 12:49:38 +0000 (23:49 +1100)
committerJustin Clift <jclift@redhat.com>
Fri, 3 Dec 2010 06:54:16 +0000 (17:54 +1100)
Now includes information on keyword usage, and provides examples.

tools/virsh.pod

index c97786a5266e10d9ab7161013e9773115ba71b91..9cb6829738a6f28766de5d54adbc302f06d605e4 100644 (file)
@@ -115,10 +115,41 @@ The following commands are generic i.e. not specific to a domain.
 
 =over 4
 
-=item B<help> optional I<command>
+=item B<help> optional I<command-or-group>
 
-This prints a small synopsis about all commands available for B<virsh>
-B<help> I<command> will print out a detailed help message on that command.
+This lists each of the virsh commands.  When used without options, all
+commands are listed, one per line, grouped into related categories,
+displaying the keyword for each group.
+
+To display only commands for a specific group, give the keyword for that
+group as an option.  For example:
+
+ virsh # help host
+
+  Host and Hypervisor (help keyword 'host'):
+     capabilities                   capabilities
+     connect                        (re)connect to hypervisor
+     freecell                       NUMA free memory
+     hostname                       print the hypervisor hostname
+     qemu-monitor-command           Qemu Monitor Command
+     uri                            print the hypervisor canonical URI
+
+To display detailed information for a specific command, give its name as the
+option instead.  For example:
+
+ virsh # help list
+   NAME
+     list - list domains
+
+   SYNOPSIS
+     list [--inactive] [--all]
+
+   DESCRIPTION
+     Returns list of domains.
+
+   OPTIONS
+     --inactive       list inactive domains
+     --all            list inactive & active domains
 
 =item B<quit>, B<exit>