From 2f2e1f3fc710982fd8577091c344af19ac736d2f Mon Sep 17 00:00:00 2001 From: Christoph Gysin Date: Thu, 26 Nov 2015 21:03:21 +0200 Subject: sway: Add --help option that prints usage --- sway.1.txt | 3 +++ sway/main.c | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/sway.1.txt b/sway.1.txt index c0715841..c80bd917 100644 --- a/sway.1.txt +++ b/sway.1.txt @@ -17,6 +17,9 @@ Synopsis Options ------- +*-h, --help*:: + Show help message and quit. + *-c, \--config* :: Specifies a config file. diff --git a/sway/main.c b/sway/main.c index 7b24d405..473a0990 100644 --- a/sway/main.c +++ b/sway/main.c @@ -55,6 +55,7 @@ int main(int argc, char **argv) { static int verbose = 0, debug = 0, validate = 0; static struct option long_options[] = { + {"help", no_argument, NULL, 'h'}, {"config", required_argument, NULL, 'c'}, {"validate", no_argument, &validate, 1}, {"debug", no_argument, &debug, 1}, @@ -69,6 +70,7 @@ int main(int argc, char **argv) { const char* usage = "Usage: sway [options] [command]\n" "\n" + " -h, --help Show help message and quit.\n" " -c, --config Specify a config file.\n" " -C, --validate Check the validity of the config file, then exit.\n" " -d, --debug Enables full logging, including debug information.\n" @@ -80,13 +82,17 @@ int main(int argc, char **argv) { int c; while (1) { int option_index = 0; - c = getopt_long(argc, argv, "CdvVpc:", long_options, &option_index); + c = getopt_long(argc, argv, "hCdvVpc:", long_options, &option_index); if (c == -1) { break; } switch (c) { case 0: // Flag break; + case 'h': // help + fprintf(stdout, "%s", usage); + exit(EXIT_SUCCESS); + break; case 'c': // config config_path = strdup(optarg); break; -- cgit v1.2.3-54-g00ecf