1*7f2fe78bSCy Schubert command_table ss_std_requests; 2*7f2fe78bSCy Schubert 3*7f2fe78bSCy Schubert request ss_self_identify, "Identify the subsystem.", 4*7f2fe78bSCy Schubert ".", 5*7f2fe78bSCy Schubert (dont_list, dont_summarize); 6*7f2fe78bSCy Schubert 7*7f2fe78bSCy Schubert request ss_help, "Display info on command or topic.", 8*7f2fe78bSCy Schubert help; 9*7f2fe78bSCy Schubert 10*7f2fe78bSCy Schubert unimplemented 11*7f2fe78bSCy Schubert ss_list_help, 12*7f2fe78bSCy Schubert "List topics for which help is available.", 13*7f2fe78bSCy Schubert list_help, lh; 14*7f2fe78bSCy Schubert 15*7f2fe78bSCy Schubert request ss_list_requests, "List available commands.", 16*7f2fe78bSCy Schubert list_requests, lr, "?"; 17*7f2fe78bSCy Schubert 18*7f2fe78bSCy Schubert request ss_quit, "Leave the subsystem.", 19*7f2fe78bSCy Schubert quit, q; 20*7f2fe78bSCy Schubert 21*7f2fe78bSCy Schubert unimplemented 22*7f2fe78bSCy Schubert ss_abbrev, 23*7f2fe78bSCy Schubert "Enable/disable abbreviation processing of request lines.", 24*7f2fe78bSCy Schubert abbrev, ab; 25*7f2fe78bSCy Schubert 26*7f2fe78bSCy Schubert unimplemented 27*7f2fe78bSCy Schubert ss_execute, 28*7f2fe78bSCy Schubert "Execute a UNIX command line.", 29*7f2fe78bSCy Schubert execute, e; 30*7f2fe78bSCy Schubert 31*7f2fe78bSCy Schubert unimplemented 32*7f2fe78bSCy Schubert ss_summarize_requests, 33*7f2fe78bSCy Schubert "Produce a list of the most commonly used requests.", 34*7f2fe78bSCy Schubert "?"; 35*7f2fe78bSCy Schubert 36*7f2fe78bSCy Schubert request ss_subsystem_name, 37*7f2fe78bSCy Schubert "Return the name of this subsystem.", 38*7f2fe78bSCy Schubert subsystem_name, 39*7f2fe78bSCy Schubert (dont_list); 40*7f2fe78bSCy Schubert 41*7f2fe78bSCy Schubert request ss_subsystem_version, 42*7f2fe78bSCy Schubert "Return the version of this subsystem.", 43*7f2fe78bSCy Schubert subsystem_version, 44*7f2fe78bSCy Schubert (dont_list); 45*7f2fe78bSCy Schubert 46*7f2fe78bSCy Schubert end; 47