=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/top/commands.c,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- src/usr.bin/top/commands.c 2007/02/09 20:57:15 1.24 +++ src/usr.bin/top/commands.c 2007/02/09 21:15:18 1.25 @@ -1,4 +1,4 @@ -/* $OpenBSD: commands.c,v 1.24 2007/02/09 20:57:15 jmc Exp $ */ +/* $OpenBSD: commands.c,v 1.25 2007/02/09 21:15:18 jmc Exp $ */ /* * Top users/processes display for Unix @@ -70,9 +70,9 @@ printf("Top version %s, %s\n", version_string(), copyright); puts("These single-character commands are available:\n" "\n" - "h | ? - help; show this text\n" - "^L - redraw screen\n" - "q - quit"); + "h | ? - help; show this text\n" + "^L - redraw screen\n" + "q - quit"); /* not all commands are available with overstrike terminals */ if (overstrike) { @@ -81,21 +81,21 @@ "sophisticated enough to handle those commands gracefully.\n"); } else { puts( - "+ - reset any g, p, or u filters\n" - "C - toggle the display of command line arguments\n" - "d n - show number `n' displays\n" - "e - list errors generated by last \"kill\" or \"renice\" command\n" - "g string - filter on command name (g+ selects all commands)\n" - "I | i - toggle the display of idle processes\n" - "k - send a signal to a list of processes\n" - "n|# n - show number `n' processes\n" - "o field - specify sort order (size, res, cpu, time, pri)\n" - "p pid - display process by pid (p+ selects all processes)\n" - "r n pid - renice process `pid' to nice value `n'\n" - "S - toggle the display of system processes\n" - "s n - change delay between displays to `n' seconds\n" - "T - toggle the display of threads\n" - "u user - display processes for `user' (u+ selects all users)\n" + "+ - reset any g, p, or u filters\n" + "C - toggle the display of command line arguments\n" + "d n - show number `n' displays\n" + "e - list errors generated by last \"kill\" or \"renice\" command\n" + "g string - filter on command name (g+ selects all commands)\n" + "I | i - toggle the display of idle processes\n" + "k [-sig] pid - send signal `-sig' to process `pid'\n" + "n|# n - show number `n' processes\n" + "o field - specify sort order (size, res, cpu, time, pri)\n" + "p pid - display process by `pid' (p+ selects all processes)\n" + "r n pid - renice process `pid' to nice value `n'\n" + "S - toggle the display of system processes\n" + "s n - change delay between displays to `n' seconds\n" + "T - toggle the display of threads\n" + "u user - display processes for `user' (u+ selects all users)\n" "\n"); } }