commands.c (51c834c4902a0f0bc73906dd801544c9b9b6d92a) commands.c (a00d703f2f438b199d3933d19d535540586b7792)
1/*
2 * Top users/processes display for Unix
3 * Version 3
4 *
5 * This program may be freely redistributed,
6 * but this entire comment MUST remain intact.
7 *
8 * Copyright (c) 1984, 1989, William LeFebvre, Rice University

--- 45 unchanged lines hidden (view full) ---

54const struct command all_commands[] =
55{
56 {'C', "toggle the displaying of weighted CPU percentage", false, CMD_wcputog},
57 {'d', "change number of displays to show", false, CMD_displays},
58 {'e', "list errors generated by last \"kill\" or \"renice\" command", false, CMD_errors},
59 {'H', "toggle the displaying of threads", false, CMD_thrtog},
60 {'h', "show this help text", true, CMD_help},
61 {'?', NULL, true, CMD_help},
1/*
2 * Top users/processes display for Unix
3 * Version 3
4 *
5 * This program may be freely redistributed,
6 * but this entire comment MUST remain intact.
7 *
8 * Copyright (c) 1984, 1989, William LeFebvre, Rice University

--- 45 unchanged lines hidden (view full) ---

54const struct command all_commands[] =
55{
56 {'C', "toggle the displaying of weighted CPU percentage", false, CMD_wcputog},
57 {'d', "change number of displays to show", false, CMD_displays},
58 {'e', "list errors generated by last \"kill\" or \"renice\" command", false, CMD_errors},
59 {'H', "toggle the displaying of threads", false, CMD_thrtog},
60 {'h', "show this help text", true, CMD_help},
61 {'?', NULL, true, CMD_help},
62 {'/', "filter on command name (+ selects all commands)", false, CMD_grep},
62 {'i', "toggle the displaying of idle processes", false, CMD_idletog},
63 {'I', NULL, false, CMD_idletog},
64 {'j', "toggle the displaying of jail ID", false, CMD_jidtog},
65 {'J', "display processes for only one jail (+ selects all jails)", false, CMD_jail},
66 {'k', "kill processes; send a signal to a list of processes", false, CMD_kill},
67 {'q', "quit" , true, CMD_quit},
68 {'m', "toggle the display between 'cpu' and 'io' modes", false, CMD_viewtog},
69 {'n', "change number of processes to display", false, CMD_number},

--- 450 unchanged lines hidden ---
63 {'i', "toggle the displaying of idle processes", false, CMD_idletog},
64 {'I', NULL, false, CMD_idletog},
65 {'j', "toggle the displaying of jail ID", false, CMD_jidtog},
66 {'J', "display processes for only one jail (+ selects all jails)", false, CMD_jail},
67 {'k', "kill processes; send a signal to a list of processes", false, CMD_kill},
68 {'q', "quit" , true, CMD_quit},
69 {'m', "toggle the display between 'cpu' and 'io' modes", false, CMD_viewtog},
70 {'n', "change number of processes to display", false, CMD_number},

--- 450 unchanged lines hidden ---