diff options
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/dc.c | 8 | ||||
-rw-r--r-- | miscutils/dutmp.c | 8 | ||||
-rw-r--r-- | miscutils/makedevs.c | 17 | ||||
-rw-r--r-- | miscutils/mktemp.c | 8 | ||||
-rw-r--r-- | miscutils/mt.c | 6 | ||||
-rw-r--r-- | miscutils/update.c | 12 |
6 files changed, 0 insertions, 59 deletions
diff --git a/miscutils/dc.c b/miscutils/dc.c index 7b13cb943..fac48e895 100644 --- a/miscutils/dc.c +++ b/miscutils/dc.c @@ -8,14 +8,6 @@ /* Tiny RPN calculator, because "expr" didn't give me bitwise operations. */ -static const char dc_usage[] = "dc expression ...\n" -#ifndef BB_FEATURE_TRIVIAL_HELP - "\nThis is a Tiny RPN calculator that understands the\n" - "following operations: +, -, /, *, and, or, not, eor.\n" - "i.e. 'dc 2 2 add' -> 4, and 'dc 8 8 \\* 2 2 + /' -> 16\n" -#endif - ; - static double stack[100]; static unsigned int pointer; diff --git a/miscutils/dutmp.c b/miscutils/dutmp.c index c6bc0c794..047b8805f 100644 --- a/miscutils/dutmp.c +++ b/miscutils/dutmp.c @@ -23,14 +23,6 @@ #include "messages.c" #include <utmp.h> - -static const char dutmp_usage[] = "dutmp [FILE]\n" -#ifndef BB_FEATURE_TRIVIAL_HELP - "\nDump utmp file format (pipe delimited) from FILE\n" - "or stdin to stdout. (i.e. 'dutmp /var/run/utmp')\n" -#endif - ; - extern int dutmp_main(int argc, char **argv) { diff --git a/miscutils/makedevs.c b/miscutils/makedevs.c index 5072095b5..99dbc0bd5 100644 --- a/miscutils/makedevs.c +++ b/miscutils/makedevs.c @@ -16,23 +16,6 @@ #include <sys/types.h> #include <sys/stat.h> -static const char makedevs_usage[] = - "makedevs NAME TYPE MAJOR MINOR FIRST LAST [s]\n" -#ifndef BB_FEATURE_TRIVIAL_HELP - "\nCreates a range of block or character special files\n\n" - "TYPEs include:\n" - "\tb:\tMake a block (buffered) device.\n" - "\tc or u:\tMake a character (un-buffered) device.\n" - "\tp:\tMake a named pipe. MAJOR and MINOR are ignored for named pipes.\n\n" - "FIRST specifies the number appended to NAME to create the first device.\n" - "LAST specifies the number of the last item that should be created.\n" - "If 's' is the last argument, the base device is created as well.\n\n" - "For example:\n" - "\tmakedevs /dev/ttyS c 4 66 2 63 -> ttyS2-ttyS63\n" - "\tmakedevs /dev/hda b 3 0 0 8 s -> hda,hda1-hda8\n" -#endif - ; - int makedevs_main(int argc, char **argv) { diff --git a/miscutils/mktemp.c b/miscutils/mktemp.c index 247d16d24..2ec078503 100644 --- a/miscutils/mktemp.c +++ b/miscutils/mktemp.c @@ -26,14 +26,6 @@ #include <stdio.h> #include <errno.h> -const char mktemp_usage[] = - "mktemp [-q] TEMPLATE\n" -#ifndef BB_FEATURE_TRIVIAL_HELP - "\nCreates a temporary file with its name based on TEMPLATE.\n" - "TEMPLATE is any name with six `Xs' (i.e. /tmp/temp.XXXXXX).\n" -#endif - ; - extern int mktemp_main(int argc, char **argv) { if (argc != 2 && (argc != 3 || strcmp(argv[1], "-q"))) diff --git a/miscutils/mt.c b/miscutils/mt.c index 4ab478270..087819e72 100644 --- a/miscutils/mt.c +++ b/miscutils/mt.c @@ -4,12 +4,6 @@ #include <sys/mtio.h> #include <sys/fcntl.h> -static const char mt_usage[] = "mt [-f device] opcode value\n" -#ifndef BB_FEATURE_TRIVIAL_HELP - "\nControl magnetic tape drive operation\n" -#endif - ; - struct mt_opcodes { char *name; short value; diff --git a/miscutils/update.c b/miscutils/update.c index f94346172..0bdc90eaa 100644 --- a/miscutils/update.c +++ b/miscutils/update.c @@ -34,18 +34,6 @@ static _syscall2(int, bdflush, int, func, int, data); #endif /* __GLIBC__ */ - -static char update_usage[] = - "update [options]\n" -#ifndef BB_FEATURE_TRIVIAL_HELP - "\nPeriodically flushes filesystem buffers.\n\n" - "Options:\n" - "\t-S\tforce use of sync(2) instead of flushing\n" - "\t-s SECS\tcall sync this often (default 30)\n" - "\t-f SECS\tflush some buffers this often (default 5)\n" -#endif - ; - static unsigned int sync_duration = 30; static unsigned int flush_duration = 5; static int use_sync = 0; |