Lines Matching full:help
39 char *help; /* help lines; from the 2nd line onward they
41 char *adv_help; /* advanced help message; from the 2nd line
206 for(pc = cmd->help; *pc; pc++){
215 static void help(char *np)
223 printf("\n\t%s help|--help|-h\n\t\tShow the help.\n",np);
224 printf("\n\t%s <cmd> --help\n\t\tShow detailed help for a command or subset of commands.\n",np);
328 - show the help if '--help' or 'help' or '-h' are passed
331 - if after a (even partial) command there is '--help' show detailed help
337 The function return 0 in case of help is requested; <0 in case
354 if( argc < 2 || !strcmp(argv[1], "help") ||
355 !strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")){
356 help(prgname);
385 if(argc>i+1 && !strcmp(argv[i+1],"--help")){
412 help(prgname);