X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=fish%2Ffish.c;h=a5fc337d2f5ef59cba5e2373c3b7386eacd6b4b1;hb=1957e9ed3402120f4868dcea04abb51ceb44df30;hp=c8e9506599ccf1c6b7bbb094009e91ab8092b683;hpb=edd99a3f7903f6f80d3f73643cd6ee114dbdd553;p=libguestfs.git diff --git a/fish/fish.c b/fish/fish.c index c8e9506..a5fc337 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -100,13 +100,14 @@ usage (void) " -n|--no-sync Don't autosync\n" " -r|--ro Mount read-only\n" " -v|--verbose Verbose messages\n" + " -V|--version Display version and exit\n" "For more information, see the manpage guestfish(1).\n"); } int main (int argc, char *argv[]) { - static const char *options = "a:h::m:nrv?"; + static const char *options = "a:h::m:nrv?V"; static struct option long_options[] = { { "add", 1, 0, 'a' }, { "cmd-help", 2, 0, 'h' }, @@ -115,6 +116,7 @@ main (int argc, char *argv[]) { "no-sync", 0, 0, 'n' }, { "ro", 0, 0, 'r' }, { "verbose", 0, 0, 'v' }, + { "version", 0, 0, 'V' }, { 0, 0, 0, 0 } }; struct mp *mps = NULL; @@ -200,6 +202,10 @@ main (int argc, char *argv[]) guestfs_set_verbose (g, verbose); break; + case 'V': + printf ("guestfish %s\n", PACKAGE_VERSION); + exit (0); + case '?': usage (); exit (0);