diff options
author | Richard Jones <rjones@redhat.com> | 2009-04-04 11:29:44 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-04-04 11:29:44 +0100 |
commit | 017b503c3bf79ad87cd66f73d36b4be5b31d10ad (patch) | |
tree | 5b3c05c082c9be948a0e5a4a6bb96f0f6ab21b5b /fish/fish.c | |
parent | 236b5295bf3e497153a5cae9708c3d0249f2daf6 (diff) | |
download | libguestfs-017b503c3bf79ad87cd66f73d36b4be5b31d10ad.tar.gz libguestfs-017b503c3bf79ad87cd66f73d36b4be5b31d10ad.tar.xz libguestfs-017b503c3bf79ad87cd66f73d36b4be5b31d10ad.zip |
Document --add and --mount options.
Diffstat (limited to 'fish/fish.c')
-rw-r--r-- | fish/fish.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/fish/fish.c b/fish/fish.c index 90f3a10a..5de84bc9 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -78,14 +78,14 @@ usage (void) " ...\n" " EOF\n" "Options:\n" - " -h|--cmd-help List available commands\n" - " -h|--cmd-help cmd Display detailed help on 'cmd'\n" - " -a image Add image\n" - " -m dev[:mnt] Mount dev on mnt (if omitted, /)\n" - " -n|--no-sync Don't autosync\n" - /*" --ro|-r All mounts are read-only\n"*/ - " -v|--verbose Verbose messages\n" - "For more information, see the manpage guestfish(1).\n"); + " -h|--cmd-help List available commands\n" + " -h|--cmd-help cmd Display detailed help on 'cmd'\n" + " -a|--add image Add image\n" + " -m|--mount dev[:mnt] Mount dev on mnt (if omitted, /)\n" + " -n|--no-sync Don't autosync\n" + /*" --ro|-r All mounts are read-only\n"*/ + " -v|--verbose Verbose messages\n" + "For more information, see the manpage guestfish(1).\n"); } int |