top: tweak --help
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 27 Feb 2019 15:45:39 +0000 (16:45 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 27 Feb 2019 15:45:39 +0000 (16:45 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
coreutils/stty.c
procps/top.c

index 6251f2aef5defdb8b7bbfcc0e3a81e8de8f5523a..d1309f9aabfc8cb3c3aacbfba4515fd92361f9d9 100644 (file)
@@ -5,18 +5,7 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
-/* Usage: stty [-ag] [-F device] [setting...]
- *
- * Options:
- * -a Write all current settings to stdout in human-readable form.
- * -g Write all current settings to stdout in stty-readable form.
- * -F Open and use the specified device instead of stdin
- *
- * If no args are given, write to stdout the baud rate and settings that
- * have been changed from their defaults.  Mode reading and changes
- * are done on the specified device, or stdin if none was specified.
- *
- * David MacKenzie <djm@gnu.ai.mit.edu>
+/* David MacKenzie <djm@gnu.ai.mit.edu>
  *
  * Special for busybox ported by Vladimir Oleynik <dzo@simtreas.ru> 2001
  */
 //usage:     "\n       -g              Print in stty-readable form"
 //usage:     "\n       [SETTING]       See manpage"
 
+/* If no args are given, write to stdout the baud rate and settings that
+ * have been changed from their defaults.  Mode reading and changes
+ * are done on the specified device, or stdin if none was specified.
+ */
+
 #include "libbb.h"
 #include "common_bufsiz.h"
 
index 3db077060459518f81505348feec5da82e505310..62540975549fc29fa57ea85af160feb63139add2 100644 (file)
@@ -1043,7 +1043,7 @@ static unsigned handle_input(unsigned scan_mask, duration_t interval)
 //usage:# define IF_SHOW_THREADS_OR_TOP_SMP(...)
 //usage:#endif
 //usage:#define top_trivial_usage
-//usage:       "[-b] [-nCOUNT] [-dSECONDS]" IF_FEATURE_TOPMEM(" [-m]")
+//usage:       "[-b"IF_FEATURE_TOPMEM("m")"] [-n COUNT] [-d SECONDS]"
 //usage:#define top_full_usage "\n\n"
 //usage:       "Provide a view of process activity in real time."
 //usage:   "\n""Read the status of all processes from /proc each SECONDS"
@@ -1068,12 +1068,11 @@ static unsigned handle_input(unsigned scan_mask, duration_t interval)
 //usage:                IF_FEATURE_TOP_SMP_CPU("1: toggle SMP")
 //usage:       )
 //usage:   "\n""       Q,^C: exit"
-//usage:   "\n"
 //usage:   "\n""Options:"
 //usage:       )
 //usage:   "\n""       -b      Batch mode"
 //usage:   "\n""       -n N    Exit after N iterations"
-//usage:   "\n""       -d N    Delay between updates"
+//usage:   "\n""       -d SEC  Delay between updates"
 //usage:       IF_FEATURE_TOPMEM(
 //usage:   "\n""       -m      Same as 's' key"
 //usage:       )