diff --git a/src/subcmds/dev.c b/src/subcmds/dev.c index 5ee1884..83edf78 100644 --- a/src/subcmds/dev.c +++ b/src/subcmds/dev.c @@ -96,7 +96,10 @@ subcmds_dev(void *, int argc, char *argv[]) system(wpath); free(wpath); } else if (strcmp(argv[1], "help") == 0 || strcmp(argv[1], "h") == 0) { - printf("Help text\n"); + printf("Usage wom dev [OPTION]...\n"); + printf(" add\tadd a new path\n"); + printf(" edit\tedit the config file\n"); + printf(" help\tshow this help text\n"); } else { } }