We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e7cd46 commit a99d4c7Copy full SHA for a99d4c7
midimonster.c
@@ -35,7 +35,13 @@ static void version(){
35
static int usage(char* fn){
36
version();
37
fprintf(stderr, "Usage:\n");
38
- fprintf(stderr, "\t%s <configfile>\n", fn);
+ fprintf(stderr, "\t%s [<options>] <configfile>\n", fn);
39
+ fprintf(stderr, "\nOptions:\n");
40
+ fprintf(stderr, "\t-v,--version - show version\n");
41
+ fprintf(stderr, "\t-b <backend> - override backend options (can be used multiple times)\n");
42
+ fprintf(stderr, "\t-i <instance> - override instance options (can be used multiple times)\n");
43
+ fprintf(stderr, "\nInstance/Backend options format:\n");
44
+ fprintf(stderr, "<instance/backend>.<option>=<value>\n");
45
return EXIT_FAILURE;
46
}
47
0 commit comments