diff options
-rw-r--r-- | include/usage.h | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/include/usage.h b/include/usage.h index 58c5470da..71c958260 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -589,14 +589,12 @@ | |||
589 | #define dc_trivial_usage \ | 589 | #define dc_trivial_usage \ |
590 | "expression..." | 590 | "expression..." |
591 | #define dc_full_usage \ | 591 | #define dc_full_usage \ |
592 | "This is a Tiny RPN calculator that understands the following operations:\n" \ | 592 | "Tiny RPN calculator. Operations:\n" \ |
593 | "+, add, -, sub, *, mul, /, div, %, mod, **, exp, and, or, not, eor.\n" \ | 593 | "+, add, -, sub, *, mul, /, div, %, mod, **, exp, and, or, not, eor,\n" \ |
594 | "For example: 'dc 2 2 add' -> 4, and 'dc 8 8 \\* 2 2 + /' -> 16.\n" \ | 594 | "p - print top of the stack (without altering the stack),\n" \ |
595 | "\nOptions:" \ | 595 | "f - print entire stack, o - pop the value and set output radix\n" \ |
596 | "\np - Print the value on the top of the stack, without altering the stack" \ | 596 | "(value must be 10 or 16).\n" \ |
597 | "\nf - Print the entire contents of the stack without altering anything" \ | 597 | "Examples: 'dc 2 2 add' -> 4, 'dc 8 8 * 2 2 + /' -> 16.\n" \ |
598 | "\no - Pop the value off the top of the stack and use it to set the output radix" \ | ||
599 | "\n Only 10 and 16 are supported" \ | ||
600 | 598 | ||
601 | #define dc_example_usage \ | 599 | #define dc_example_usage \ |
602 | "$ dc 2 2 + p\n" \ | 600 | "$ dc 2 2 + p\n" \ |
@@ -1178,14 +1176,14 @@ | |||
1178 | #define fsck_minix_trivial_usage \ | 1176 | #define fsck_minix_trivial_usage \ |
1179 | "[-larvsmf] /dev/name" | 1177 | "[-larvsmf] /dev/name" |
1180 | #define fsck_minix_full_usage \ | 1178 | #define fsck_minix_full_usage \ |
1181 | "Perform a consistency check for MINIX filesystems\n" \ | 1179 | "Check MINIX filesystem\n" \ |
1182 | "\nOptions:" \ | 1180 | "\nOptions:" \ |
1183 | "\n -l List all filenames" \ | 1181 | "\n -l List all filenames" \ |
1184 | "\n -r Perform interactive repairs" \ | 1182 | "\n -r Perform interactive repairs" \ |
1185 | "\n -a Perform automatic repairs" \ | 1183 | "\n -a Perform automatic repairs" \ |
1186 | "\n -v Verbose" \ | 1184 | "\n -v Verbose" \ |
1187 | "\n -s Output super-block information" \ | 1185 | "\n -s Output super-block information" \ |
1188 | "\n -m Activate MINIX-like \"mode not cleared\" warnings" \ | 1186 | "\n -m Show \"mode not cleared\" warnings" \ |
1189 | "\n -f Force file system check" \ | 1187 | "\n -f Force file system check" \ |
1190 | 1188 | ||
1191 | #define ftpget_trivial_usage \ | 1189 | #define ftpget_trivial_usage \ |
@@ -1547,7 +1545,7 @@ | |||
1547 | #define hwclock_full_usage \ | 1545 | #define hwclock_full_usage \ |
1548 | "Query and set hardware clock (RTC)\n" \ | 1546 | "Query and set hardware clock (RTC)\n" \ |
1549 | "\nOptions:" \ | 1547 | "\nOptions:" \ |
1550 | "\n -r Show time from hardware clock" \ | 1548 | "\n -r Show hardware clock time" \ |
1551 | "\n -s Set system time from hardware clock" \ | 1549 | "\n -s Set system time from hardware clock" \ |
1552 | "\n -w Set hardware clock to system time" \ | 1550 | "\n -w Set hardware clock to system time" \ |
1553 | "\n -u Hardware clock is in UTC" \ | 1551 | "\n -u Hardware clock is in UTC" \ |
@@ -2223,9 +2221,9 @@ | |||
2223 | #define makedevs_full_usage \ | 2221 | #define makedevs_full_usage \ |
2224 | "Create a range of block or character special files\n\n" \ | 2222 | "Create a range of block or character special files\n\n" \ |
2225 | "TYPEs include:\n" \ | 2223 | "TYPEs include:\n" \ |
2226 | " b: Make a block (buffered) device\n" \ | 2224 | " b Make a block device\n" \ |
2227 | " c or u: Make a character (un-buffered) device\n" \ | 2225 | " c or u Make a character device\n" \ |
2228 | " p: Make a named pipe. MAJOR and MINOR are ignored for named pipes\n" \ | 2226 | " p Make a named pipe. MAJOR and MINOR are ignored\n" \ |
2229 | "\n" \ | 2227 | "\n" \ |
2230 | "FIRST specifies the number appended to NAME to create the first device.\n" \ | 2228 | "FIRST specifies the number appended to NAME to create the first device.\n" \ |
2231 | "LAST specifies the number of the last item that should be created\n" \ | 2229 | "LAST specifies the number of the last item that should be created\n" \ |
@@ -3174,7 +3172,7 @@ | |||
3174 | #define route_full_usage \ | 3172 | #define route_full_usage \ |
3175 | "Edit the kernel's routing tables\n" \ | 3173 | "Edit the kernel's routing tables\n" \ |
3176 | "\nOptions:" \ | 3174 | "\nOptions:" \ |
3177 | "\n -n Dont resolve names" \ | 3175 | "\n -n Don't resolve names" \ |
3178 | "\n -e Display other/more information" \ | 3176 | "\n -e Display other/more information" \ |
3179 | "\n -A inet" USE_FEATURE_IPV6("{6}") " Select address family" \ | 3177 | "\n -A inet" USE_FEATURE_IPV6("{6}") " Select address family" \ |
3180 | 3178 | ||