From 8312b26c3733a04583084ee3bae9148db84c8b00 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 24 Apr 2012 08:56:26 -0400 Subject: Add --help and --version arguments --- src/linux-user-chroot.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/linux-user-chroot.c b/src/linux-user-chroot.c index 66285e5..7c2e678 100644 --- a/src/linux-user-chroot.c +++ b/src/linux-user-chroot.c @@ -24,6 +24,8 @@ * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include "config.h" + #define _GNU_SOURCE #include #include @@ -145,7 +147,17 @@ main (int argc, fatal ("Too many mounts (maximum of %u)", n_mounts); n_mounts++; - if (strcmp (arg, "--mount-bind") == 0) + if (strcmp (arg, "--help") == 0) + { + printf ("%s\n", "See \"man linux-user-chroot\""); + exit (0); + } + else if (strcmp (arg, "--version") == 0) + { + printf ("%s\n", PACKAGE_STRING); + exit (0); + } + else if (strcmp (arg, "--mount-bind") == 0) { if ((argc - after_mount_arg_index) < 3) fatal ("--mount-bind takes two arguments"); -- cgit v1.2.1