52c0a691570d7a18aaf52a3c599c15b23946e061
[oweals/busybox.git] / usage.c
1 #include "busybox.h"
2
3 #if defined BB_AR
4 const char ar_usage[] =
5         "ar -[ovR]{ptx} archive filenames"
6 #ifndef BB_FEATURE_TRIVIAL_HELP
7         "\n\nExtract or list files from an ar archive.\n\n"
8         "Options:\n"
9         "\t-o\t\tpreserve original dates\n"
10         "\t-p\t\textract to stdout\n"
11         "\t-t\t\tlist\n"
12         "\t-x\t\textract\n"
13         "\t-v\t\tverbosely list files processed\n"
14         "\t-R\t\trecursive action"
15 #endif
16         ;
17 #endif
18
19 #if defined BB_BASENAME
20 const char basename_usage[] =
21         "basename FILE [SUFFIX]"
22 #ifndef BB_FEATURE_TRIVIAL_HELP
23         "\n\nStrips directory path and suffixes from FILE.\n"
24         "If specified, also removes any trailing SUFFIX."
25 #endif
26         ;
27 #endif
28
29 #if defined BB_CAT
30 const char cat_usage[] =
31         "cat [FILE]..."
32 #ifndef BB_FEATURE_TRIVIAL_HELP
33         "\n\nConcatenates FILE(s) and prints them to stdout."
34 #endif
35         ;
36 #endif
37
38 #if defined BB_CHMOD_CHOWN_CHGRP
39 const char chgrp_usage[] =
40         "chgrp [OPTION]... GROUP FILE..."
41 #ifndef BB_FEATURE_TRIVIAL_HELP
42         "\n\nChange the group membership of each FILE to GROUP.\n"
43         "\nOptions:\n\t-R\tChanges files and directories recursively."
44 #endif
45         ;
46 #endif
47
48 #if defined BB_CHMOD_CHOWN_CHGRP
49 const char chmod_usage[] =
50         "chmod [-R] MODE[,MODE]... FILE..."
51 #ifndef BB_FEATURE_TRIVIAL_HELP
52         "\n\nEach MODE is one or more of the letters ugoa, one of the symbols +-= and\n"
53         "one or more of the letters rwxst.\n\n"
54         "\nOptions:\n\t-R\tChanges files and directories recursively."
55 #endif
56         ;
57 #endif
58
59 #if defined BB_CHMOD_CHOWN_CHGRP
60 const char chown_usage[] =
61         "chown [OPTION]...  OWNER[<.|:>[GROUP] FILE..."
62 #ifndef BB_FEATURE_TRIVIAL_HELP
63         "\n\nChange the owner and/or group of each FILE to OWNER and/or GROUP.\n"
64         "\nOptions:\n\t-R\tChanges files and directories recursively."
65 #endif
66         ;
67 #endif
68
69 #if defined BB_CHROOT
70 const char chroot_usage[] =
71         "chroot NEWROOT [COMMAND...]"
72 #ifndef BB_FEATURE_TRIVIAL_HELP
73         "\n\nRun COMMAND with root directory set to NEWROOT."
74 #endif
75         ;
76 #endif
77
78 #if defined BB_CHVT
79 const char chvt_usage[] =
80         "chvt N"
81 #ifndef BB_FEATURE_TRIVIAL_HELP
82         "\n\nChanges the foreground virtual terminal to /dev/ttyN"
83 #endif
84         ;
85 #endif
86
87 #if defined BB_CLEAR
88 const char clear_usage[] =
89         "clear"
90 #ifndef BB_FEATURE_TRIVIAL_HELP
91         "\n\nClear screen."
92 #endif
93         ;
94 #endif
95
96 #if defined BB_CMP
97 const char cmp_usage[] =
98         "cmp FILE1 [FILE2]"
99 #ifndef BB_FEATURE_TRIVIAL_HELP
100         "\n\nCompare files."
101 #endif
102         ;
103 #endif
104
105 #if defined BB_CP_MV
106 const char cp_usage[] =
107         "cp [OPTION]... SOURCE DEST\n"
108         "   or: cp [OPTION]... SOURCE... DIRECTORY"
109 #ifndef BB_FEATURE_TRIVIAL_HELP
110         "\n\nCopies SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n"
111         "\n"
112         "\t-a\tSame as -dpR\n"
113         "\t-d\tPreserves links\n"
114         "\t-p\tPreserves file attributes if possible\n"
115         "\t-f\tforce (implied; ignored) - always set\n"
116         "\t-R\tCopies directories recursively"
117 #endif
118         ;
119 #endif
120
121 #if defined BB_CUT
122 const char cut_usage[] =
123         "cut [OPTION]... [FILE]..."
124 #ifndef BB_FEATURE_TRIVIAL_HELP
125         "\n\nPrints selected fields from each input FILE to standard output.\n\n"
126         "Options:\n"
127         "\t-b LIST\tOutput only bytes from LIST\n"
128         "\t-c LIST\tOutput only characters from LIST\n"
129         "\t-d CHAR\tUse CHAR instead of tab as the field delimiter\n"
130         "\t-s\tOutput only the lines containing delimiter\n"
131         "\t-f N\tPrint only these fields\n"
132         "\t-n\tIgnored"
133 #endif
134         ;
135 #endif
136
137 #if defined BB_DATE
138 const char date_usage[] =
139         "date [OPTION]... [+FORMAT]\n"
140         "  or:  date [OPTION] [MMDDhhmm[[CC]YY][.ss]]"
141 #ifndef BB_FEATURE_TRIVIAL_HELP
142         "\n\nDisplays the current time in the given FORMAT, or sets the system date.\n"
143         "\nOptions:\n\t-R\t\tOutputs RFC-822 compliant date string\n"
144         "\t-d STRING\tdisplay time described by STRING, not `now'\n"
145         "\t-s\t\tSets time described by STRING\n"
146         "\t-u\t\tPrints or sets Coordinated Universal Time"
147 #endif
148         ;
149 #endif
150
151 #if defined BB_DC
152 const char dc_usage[] =
153         "dc expression ..."
154 #ifndef BB_FEATURE_TRIVIAL_HELP
155         "\n\nThis is a Tiny RPN calculator that understands the\n"
156         "following operations: +, -, /, *, and, or, not, eor.\n"
157         "i.e. 'dc 2 2 add' -> 4, and 'dc 8 8 \\* 2 2 + /' -> 16"
158 #endif
159         ;
160 #endif
161
162 #if defined BB_DD
163 const char dd_usage[] =
164         "dd [if=FILE] [of=FILE] [bs=N] [count=N] [skip=N] [seek=N] [conv=notrunc|sync]"
165 #ifndef BB_FEATURE_TRIVIAL_HELP
166         "\n\nCopy a file, converting and formatting according to options\n\n"
167         "\tif=FILE\tread from FILE instead of stdin\n"
168         "\tof=FILE\twrite to FILE instead of stdout\n"
169         "\tbs=N\tread and write N bytes at a time\n"
170         "\tcount=N\tcopy only N input blocks\n"
171         "\tskip=N\tskip N input blocks\n"
172         "\tseek=N\tskip N output blocks\n"
173         "\tconv=notrunc\tdon't truncate output file\n"
174         "\tconv=sync\tpad blocks with zeros\n"
175         "\n"
176         "Numbers may be suffixed by c (x1), w (x2), b (x512), kD (x1000), k (x1024),\n"
177         "MD (x1000000), M (x1048576), GD (x1000000000) or G (x1073741824)."
178 #endif
179         ;
180 #endif
181
182 #if defined BB_DEALLOCVT
183 const char deallocvt_usage[] =
184         "deallocvt N"
185 #ifndef BB_FEATURE_TRIVIAL_HELP
186          "\n\nDeallocate unused virtual terminal /dev/ttyN"
187 #endif
188          ;
189 #endif
190
191 #if defined BB_DF
192 const char df_usage[] =
193         "df [-?"
194 #ifdef BB_FEATURE_HUMAN_READABLE
195         "hm"
196 #endif
197         "k] [filesystem ...]\n"
198 #ifndef BB_FEATURE_TRIVIAL_HELP
199         "\n\nPrint the filesystem space used and space available."
200         "Options:\n"
201         "\t-?\tshow usage information\n"
202 #ifdef BB_FEATURE_HUMAN_READABLE
203         "\t-h\tprint sizes in human readable format (e.g., 1K 243M 2G )\n"
204         "\t-m\tprint sizes in megabytes\n"
205         "\t-k\tprint sizes in kilobytes(default)\n"
206 #else
207         "\t-k\tprint sizes in kilobytes(compatability)\n"
208 #endif
209 #endif
210         ;
211 #endif
212
213 #if defined BB_DIRNAME
214 const char dirname_usage[] =
215         "dirname [FILENAME ...]"
216 #ifndef BB_FEATURE_TRIVIAL_HELP
217         "\n\nStrips non-directory suffix from FILENAME"
218 #endif
219         ;
220 #endif
221
222 #if defined BB_DMESG
223 const char dmesg_usage[] =
224         "dmesg [-c] [-n LEVEL] [-s SIZE]"
225 #ifndef BB_FEATURE_TRIVIAL_HELP
226         "\n\nPrints or controls the kernel ring buffer\n\n"
227         "Options:\n"
228         "\t-c\t\tClears the ring buffer's contents after printing\n"
229         "\t-n LEVEL\tSets console logging level\n"
230         "\t-s SIZE\t\tUse a buffer of size SIZE"
231 #endif
232         ;
233 #endif
234
235 #if defined BB_DOS2UNIX
236 const char dos2unix_usage[] =
237         "dos2unix < dosfile > unixfile"
238 #ifndef BB_FEATURE_TRIVIAL_HELP
239         "\n\nConverts a text file from dos format to unix format."
240 #endif
241         ;
242 #endif
243
244 #if defined BB_DPKG
245 const char dpkg_usage[] =
246         "udpkg <-i|-r|--unpack|--configure> my.deb\n"
247         "WORK IN PROGRESS, only usefull for debian-installer\n"
248 #ifndef BB_FEATURE_TRIVIAL_HELP
249 #endif
250         ;
251 #endif
252
253 #if defined BB_DPKG_DEB
254 const char dpkg_deb_usage[] =
255         "dpkg-deb [-cexX] file directory"
256 #ifndef BB_FEATURE_TRIVIAL_HELP
257         "\n\nPerform actions on debian packages (.debs)\n\n"
258         "Options:\n"
259         "\t-c\tList contents of filesystem tree (verbose)\n"
260         "\t-l\tList contents of filesystem tree (.list format)\n"
261         "\t-e\tExtract control files to directory\n"    
262         "\t-x\tExctract packages filesystem tree to directory\n"
263         "\t-X\tVerbose extract"
264 #endif
265         ;
266 #endif
267
268 #if defined BB_DU
269 const char du_usage[] =
270         "du [-?ls"
271 #ifdef BB_FEATURE_HUMAN_READABLE
272         "hm"
273 #endif
274         "k] [FILE]...\n"
275 #ifndef BB_FEATURE_TRIVIAL_HELP
276         "\n\nSummarizes disk space used for each FILE and/or directory.\n"
277         "Disk space is printed in units of 1024 bytes.\n\n"
278         "Options:\n"
279         "\t-?\tshow usage information\n"
280         "\t-l\tcount sizes many times if hard linked\n"
281         "\t-s\tdisplay only a total for each argument"
282 #ifdef BB_FEATURE_HUMAN_READABLE
283         "\t-h\tprint sizes in human readable format (e.g., 1K 243M 2G )\n"
284         "\t-m\tprint sizes in megabytes\n"
285         "\t-k\tprint sizes in kilobytes(default)\n"
286 #else
287         "\t-k\tprint sizes in kilobytes(compatability)\n"
288 #endif
289 #endif
290         ;
291 #endif
292
293 #if defined BB_DUMPKMAP
294 const char dumpkmap_usage[] =
295         "dumpkmap > keymap"
296 #ifndef BB_FEATURE_TRIVIAL_HELP
297         "\n\nPrints out a binary keyboard translation table to standard input."
298 #endif
299         ;
300 #endif
301
302 #if defined BB_DUTMP
303 const char dutmp_usage[] =
304         "dutmp [FILE]"
305 #ifndef BB_FEATURE_TRIVIAL_HELP
306         "\n\nDump utmp file format (pipe delimited) from FILE\n"
307         "or stdin to stdout.  (i.e. 'dutmp /var/run/utmp')"
308 #endif
309         ;
310 #endif
311
312 #if defined BB_ECHO
313 const char echo_usage[] =
314         "echo [-neE] [ARG ...]"
315 #ifndef BB_FEATURE_TRIVIAL_HELP
316         "\n\nPrints the specified ARGs to stdout\n\n"
317         "Options:\n"
318         "\t-n\tsuppress trailing newline\n"
319         "\t-e\tinterpret backslash-escaped characters (i.e. \\t=tab etc)\n"
320         "\t-E\tdisable interpretation of backslash-escaped characters"
321 #endif
322         ;
323 #endif
324
325 #if defined BB_EXPR
326 const char expr_usage[] =
327         "expr EXPRESSION"
328 #ifndef BB_FEATURE_TRIVIAL_HELP
329 "\n\nPrints the value of EXPRESSION to standard output.\n\n"
330 "EXPRESSION may be:\n"
331 "ARG1 |  ARG2   ARG1 if it is neither null nor 0, otherwise ARG2\n"
332 "ARG1 &  ARG2   ARG1 if neither argument is null or 0, otherwise 0\n"
333 "ARG1 <  ARG2   ARG1 is less than ARG2\n"
334 "ARG1 <= ARG2   ARG1 is less than or equal to ARG2\n"
335 "ARG1 =  ARG2   ARG1 is equal to ARG2\n"
336 "ARG1 != ARG2   ARG1 is unequal to ARG2\n"
337 "ARG1 >= ARG2   ARG1 is greater than or equal to ARG2\n"
338 "ARG1 >  ARG2   ARG1 is greater than ARG2\n"
339 "ARG1 +  ARG2   arithmetic sum of ARG1 and ARG2\n"
340 "ARG1 -  ARG2   arithmetic difference of ARG1 and ARG2\n"
341 "ARG1 *  ARG2   arithmetic product of ARG1 and ARG2\n"
342 "ARG1 /  ARG2   arithmetic quotient of ARG1 divided by ARG2\n"
343 "ARG1 %  ARG2   arithmetic remainder of ARG1 divided by ARG2\n"
344 "STRING : REGEXP                    anchored pattern match of REGEXP in STRING\n"
345 "match STRING REGEXP        same as STRING : REGEXP\n"
346 "substr STRING POS LENGTH    substring of STRING, POS counted from 1\n"
347 "index STRING CHARS         index in STRING where any CHARS is found, or 0\n"
348 "length STRING              length of STRING\n"
349 "quote TOKEN                interpret TOKEN as a string, even if it is a \n"
350 "                               keyword like `match' or an operator like `/'\n"
351 "( EXPRESSION )             value of EXPRESSION\n\n"
352 "Beware that many operators need to be escaped or quoted for shells.\n"
353 "Comparisons are arithmetic if both ARGs are numbers, else\n"
354 "lexicographical.  Pattern matches return the string matched between \n"
355 "\\( and \\) or null; if \\( and \\) are not used, they return the number \n"
356 "of characters matched or 0."
357
358 #endif
359         ;
360 #endif
361
362
363 #if defined BB_TRUE_FALSE
364 const char false_usage[] =
365         "false"
366 #ifndef BB_FEATURE_TRIVIAL_HELP
367         "\n\nReturn an exit code of FALSE (1)."
368 #endif
369         ;
370 #endif
371
372 #if defined BB_FDFLUSH
373 const char fdflush_usage[] =
374         "fdflush DEVICE"
375 #ifndef BB_FEATURE_TRIVIAL_HELP
376         "\n\nForces floppy disk drive to detect disk change"
377 #endif
378         ;
379 #endif
380
381 #if defined BB_FIND
382 const char find_usage[] =
383         "find [PATH...] [EXPRESSION]"
384 #ifndef BB_FEATURE_TRIVIAL_HELP
385         "\n\nSearch for files in a directory hierarchy.  The default PATH is\n"
386         "the current directory; default EXPRESSION is '-print'\n\n"
387         "\nEXPRESSION may consist of:\n"
388         "\t-follow\t\tDereference symbolic links.\n"
389         "\t-name PATTERN\tFile name (leading directories removed) matches PATTERN.\n"
390 #ifdef BB_FEATURE_FIND_TYPE
391         "\t-type X\t\tFiletype matches X (where X is one of: f,d,l,b,c,...)\n"
392 #endif
393 #ifdef BB_FEATURE_FIND_PERM
394         "\t-perm PERMS\tPermissions match any of (+NNN); all of (-NNN); or exactly (NNN)\n"
395 #endif
396 #ifdef BB_FEATURE_FIND_MTIME
397         "\t-mtime TIME\tModified time is greater than (+N); less than (-N); or exactly (N) days\n"
398 #endif
399 #endif
400         ;
401 #endif
402
403 #if defined BB_FREE
404 const char free_usage[] =
405         "free"
406 #ifndef BB_FEATURE_TRIVIAL_HELP
407         "\n\nDisplays the amount of free and used system memory"
408 #endif
409         ;
410 #endif
411
412 #if defined BB_FREERAMDISK
413 const char freeramdisk_usage[] =
414         "freeramdisk DEVICE"
415 #ifndef BB_FEATURE_TRIVIAL_HELP
416         "\n\nFrees all memory used by the specified ramdisk."
417 #endif
418         ;
419 #endif
420
421 #if defined BB_FSCK_MINIX
422 const char fsck_minix_usage[] =
423         "Usage: fsck.minix [-larvsmf] /dev/name"
424 #ifndef BB_FEATURE_TRIVIAL_HELP
425         "\n\nPerforms a consistency check for MINIX filesystems.\n\n"
426         "Options:\n"
427         "\t-l\tLists all filenames\n"
428         "\t-r\tPerform interactive repairs\n"
429         "\t-a\tPerform automatic repairs\n"
430         "\t-v\tverbose\n"
431         "\t-s\tOutputs super-block information\n"
432         "\t-m\tActivates MINIX-like \"mode not cleared\" warnings\n"
433         "\t-f\tForce file system check."
434 #endif
435         ;
436 #endif
437
438 #if defined BB_GETOPT
439 const char getopt_usage[] =
440 "getopt [OPTIONS]..."
441 #ifndef BB_FEATURE_TRIVIAL_HELP
442 "\nParse command options\n"
443 "  -a, --alternative            Allow long options starting with single -\n"
444 "  -l, --longoptions=longopts   Long options to be recognized\n"
445 "  -n, --name=progname          The name under which errors are reported\n"
446 "  -o, --options=optstring      Short options to be recognized\n"
447 "  -q, --quiet                  Disable error reporting by getopt(3)\n"
448 "  -Q, --quiet-output           No normal output\n"
449 "  -s, --shell=shell            Set shell quoting conventions\n"
450 "  -T, --test                   Test for getopt(1) version\n"
451 "  -u, --unqote                 Do not quote the output"
452 #endif
453 ;
454 #endif
455
456 #if defined BB_GREP
457 const char grep_usage[] =
458         "grep [-ihHnqvs] pattern [files...]"
459 #ifndef BB_FEATURE_TRIVIAL_HELP
460         "\n\nSearch for PATTERN in each FILE or standard input.\n\n"
461         "Options:\n"
462         "\t-H\tprefix output lines with filename where match was found\n"
463         "\t-h\tsuppress the prefixing filename on output\n"
464         "\t-i\tignore case distinctions\n"
465         "\t-n\tprint line number with output lines\n"
466         "\t-q\tbe quiet. Returns 0 if result was found, 1 otherwise\n"
467         "\t-v\tselect non-matching lines\n"
468         "\t-s\tsuppress file open/read error messages"
469 #endif
470         ;
471 #endif
472
473 #if defined BB_GUNZIP
474 const char gunzip_usage[] =
475         "gunzip [OPTION]... FILE"
476 #ifndef BB_FEATURE_TRIVIAL_HELP
477         "\n\nUncompress FILE (or standard input if FILE is '-').\n\n"
478         "Options:\n"
479         "\t-c\tWrite output to standard output\n"
480         "\t-t\tTest compressed file integrity"
481 #endif
482         ;
483 #endif
484
485 #if defined BB_GZIP
486 const char gzip_usage[] =
487         "gzip [OPTION]... FILE"
488 #ifndef BB_FEATURE_TRIVIAL_HELP
489         "\n\nCompress FILE with maximum compression.\n"
490         "When FILE is '-', reads standard input.  Implies -c.\n\n"
491         "Options:\n"
492         "\t-c\tWrite output to standard output instead of FILE.gz\n"
493         "\t-d\tdecompress"
494 #endif
495         ;
496 #endif
497
498 #if defined BB_HALT
499 const char halt_usage[] =
500         "halt"
501 #ifndef BB_FEATURE_TRIVIAL_HELP
502         "\n\nHalt the system."
503 #endif
504         ;
505 #endif
506
507 #if defined BB_HEAD
508 const char head_usage[] =
509         "head [OPTION] [FILE]..."
510 #ifndef BB_FEATURE_TRIVIAL_HELP
511         "\n\nPrint first 10 lines of each FILE to standard output.\n"
512         "With more than one FILE, precede each with a header giving the\n"
513         "file name. With no FILE, or when FILE is -, read standard input.\n\n"
514
515         "Options:\n" "\t-n NUM\t\tPrint first NUM lines instead of first 10"
516 #endif
517         ;
518 #endif
519
520 #if defined BB_HOSTID
521 const char hostid_usage[] =
522         "hostid"
523 #ifndef BB_FEATURE_TRIVIAL_HELP
524         "\n\nPrint out a unique 32-bit identifier for the machine."
525 #endif
526         ;
527 #endif
528
529 #if defined BB_HOSTNAME
530 const char hostname_usage[] =
531         "hostname [OPTION] {hostname | -F file}"
532 #ifndef BB_FEATURE_TRIVIAL_HELP
533         "\n\nGet or set the hostname or DNS domain name. If a hostname is given\n"
534         "(or a file with the -F parameter), the host name will be set.\n\n"
535
536         "Options:\n"
537         "\t-s\t\tShort\n"
538         "\t-i\t\tAddresses for the hostname\n"
539         "\t-d\t\tDNS domain name\n"
540         "\t-F, --file FILE\tUse the contents of FILE to specify the hostname"
541 #endif
542         ;
543 #endif
544
545 #if defined BB_ID
546 const char id_usage[] =
547         "id [OPTIONS]... [USERNAME]"
548 #ifndef BB_FEATURE_TRIVIAL_HELP
549         "\n\nPrint information for USERNAME or the current user\n\n"
550         "Options:\n"
551         "\t-g\tprints only the group ID\n"
552         "\t-u\tprints only the user ID\n"
553         "\t-n\tprint a name instead of a number (with for -ug)\n"
554         "\t-r\tprints the real user ID instead of the effective ID (with -ug)"
555 #endif
556         ;
557 #endif
558
559 #if defined BB_INSMOD
560 const char insmod_usage[] =
561         "insmod [OPTION]... MODULE [symbol=value]..."
562 #ifndef BB_FEATURE_TRIVIAL_HELP
563         "\n\nLoads the specified kernel modules into the kernel.\n\n"
564         "Options:\n"
565         "\t-f\tForce module to load into the wrong kernel version.\n"
566         "\t-k\tMake module autoclean-able.\n"
567         "\t-v\tverbose output\n" 
568         "\t-L\tLock to prevent simultaneous loads of a module\n"
569         "\t-x\tdo not export externs"
570 #endif
571         ;
572 #endif
573
574 #if defined BB_KILL
575 const char kill_usage[] =
576         "kill [-signal] process-id [process-id ...]"
577 #ifndef BB_FEATURE_TRIVIAL_HELP
578         "\n\nSend a signal (default is SIGTERM) to the specified process(es).\n\n"
579         "Options:\n" "\t-l\tList all signal names and numbers."
580 #endif
581         ;
582 #endif
583
584 #if defined BB_KILLALL
585 const char killall_usage[] =
586         "killall [-signal] process-name [process-name ...]"
587 #ifndef BB_FEATURE_TRIVIAL_HELP
588         "\n\nSend a signal (default is SIGTERM) to the specified process(es).\n\n"
589         "Options:\n" "\t-l\tList all signal names and numbers."
590 #endif
591         ;
592 #endif
593
594 #if defined BB_LENGTH
595 const char length_usage[] =
596         "length STRING"
597 #ifndef BB_FEATURE_TRIVIAL_HELP
598         "\n\nPrints out the length of the specified STRING."
599 #endif
600         ;
601 #endif
602
603 #if defined BB_LN
604 const char ln_usage[] =
605         "ln [OPTION] TARGET... LINK_NAME|DIRECTORY"
606 #ifndef BB_FEATURE_TRIVIAL_HELP
607         "\n\nCreate a link named LINK_NAME or DIRECTORY to the specified TARGET\n"
608         "\nYou may use '--' to indicate that all following arguments are non-options.\n\n"
609         "Options:\n"
610         "\t-s\tmake symbolic links instead of hard links\n"
611         "\t-f\tremove existing destination files\n"
612         "\t-n\tno dereference symlinks - treat like normal file"
613 #endif
614         ;
615 #endif
616
617 #if defined BB_LOADACM
618 const char loadacm_usage[] =
619         "loadacm < mapfile"
620 #ifndef BB_FEATURE_TRIVIAL_HELP
621         "\n\nLoads an acm from standard input."
622 #endif
623         ;
624 #endif
625
626 #if defined BB_LOADFONT
627 const char loadfont_usage[] =
628         "loadfont < font"
629 #ifndef BB_FEATURE_TRIVIAL_HELP
630         "\n\nLoads a console font from standard input."
631 #endif
632         ;
633 #endif
634
635 #if defined BB_LOADKMAP
636 const char loadkmap_usage[] =
637         "loadkmap < keymap"
638 #ifndef BB_FEATURE_TRIVIAL_HELP
639         "\n\nLoads a binary keyboard translation table from standard input."
640 #endif
641         ;
642 #endif
643
644 #if defined BB_LOGGER
645 const char logger_usage[] =
646         "logger [OPTION]... [MESSAGE]"
647 #ifndef BB_FEATURE_TRIVIAL_HELP
648         "\n\nWrite MESSAGE to the system log.  If MESSAGE is omitted, log stdin.\n\n"
649         "Options:\n"
650         "\t-s\tLog to stderr as well as the system log.\n"
651         "\t-t\tLog using the specified tag (defaults to user name).\n"
652         "\t-p\tEnter the message with the specified priority.\n"
653         "\t\tThis may be numerical or a ``facility.level'' pair."
654 #endif
655         ;
656 #endif
657
658 #if defined BB_LOGNAME
659 const char logname_usage[] =
660         "logname"
661 #ifndef BB_FEATURE_TRIVIAL_HELP
662         "\n\nPrint the name of the current user."
663 #endif
664         ;
665 #endif
666
667 #if defined BB_LS
668 const char ls_usage[] =
669         "ls [-1Aa"
670 #ifdef BB_FEATURE_LS_TIMESTAMPS
671         "c"
672 #endif
673         "Cd"
674 #ifdef BB_FEATURE_LS_TIMESTAMPS
675         "e"
676 #endif
677 #ifdef BB_FEATURE_LS_FILETYPES
678         "F"
679 #endif
680         "iln"
681 #ifdef BB_FEATURE_LS_FILETYPES
682         "p"
683 #endif
684 #ifdef BB_FEATURE_LS_FOLLOWLINKS
685     "L"
686 #endif
687 #ifdef BB_FEATURE_LS_RECURSIVE
688         "R"
689 #endif
690 #ifdef BB_FEATURE_LS_SORTFILES
691         "rS"
692 #endif
693         "s"
694 #ifdef BB_FEATURE_AUTOWIDTH
695         "T"
696 #endif
697 #ifdef BB_FEATURE_LS_TIMESTAMPS
698         "tu"
699 #endif
700 #ifdef BB_FEATURE_LS_SORTFILES
701         "v"
702 #endif
703 #ifdef BB_FEATURE_AUTOWIDTH
704         "w"
705 #endif
706         "x"
707 #ifdef BB_FEATURE_LS_SORTFILES
708         "X"
709 #endif
710 #ifdef BB_FEATURE_HUMAN_READABLE
711         "h"
712 #endif
713         "k] [filenames...]\n"
714 #ifndef BB_FEATURE_TRIVIAL_HELP
715         "\n\nList directory contents\n\n"
716         "Options:\n"
717         "\t-1\tlist files in a single column\n"
718         "\t-A\tdo not list implied . and ..\n"
719         "\t-a\tdo not hide entries starting with .\n"
720         "\t-C\tlist entries by columns\n"
721 #ifdef BB_FEATURE_LS_TIMESTAMPS
722         "\t-c\twith -l: show ctime (the time of last\n"
723         "\t\tmodification of file status information)\n"
724 #endif
725         "\t-d\tlist directory entries instead of contents\n"
726 #ifdef BB_FEATURE_LS_TIMESTAMPS
727         "\t-e\tlist both full date and full time\n"
728 #endif
729 #ifdef BB_FEATURE_LS_FILETYPES
730         "\t-F\tappend indicator (one of */=@|) to entries\n"
731 #endif
732         "\t-i\tlist the i-node for each file\n"
733         "\t-l\tuse a long listing format\n"
734         "\t-n\tlist numeric UIDs and GIDs instead of names\n"
735 #ifdef BB_FEATURE_LS_FILETYPES
736         "\t-p\tappend indicator (one of /=@|) to entries\n"
737 #endif
738 #ifdef BB_FEATURE_LS_FOLLOWLINKS
739         "\t-L\tlist entries pointed to by symbolic links\n"
740 #endif
741 #ifdef BB_FEATURE_LS_RECURSIVE
742         "\t-R\tlist subdirectories recursively\n"
743 #endif
744 #ifdef BB_FEATURE_LS_SORTFILES
745         "\t-r\tsort the listing in reverse order\n"
746         "\t-S\tsort the listing by file size\n"
747 #endif
748         "\t-s\tlist the size of each file, in blocks\n"
749 #ifdef BB_FEATURE_AUTOWIDTH
750         "\t-T NUM\tassume Tabstop every NUM columns\n"
751 #endif
752 #ifdef BB_FEATURE_LS_TIMESTAMPS
753         "\t-t\twith -l: show modification time (the time of last\n"
754         "\t\tchange of the file)\n"
755         "\t-u\twith -l: show access time (the time of last\n"
756         "\t\taccess of the file)\n"
757 #endif
758 #ifdef BB_FEATURE_LS_SORTFILES
759         "\t-v\tsort the listing by version\n"
760 #endif
761 #ifdef BB_FEATURE_AUTOWIDTH
762         "\t-w NUM\tassume the terminal is NUM columns wide\n"
763 #endif
764         "\t-x\tlist entries by lines instead of by columns\n"
765 #ifdef BB_FEATURE_LS_SORTFILES
766         "\t-X\tsort the listing by extension\n"
767 #endif
768
769 #ifdef BB_FEATURE_HUMAN_READABLE
770         "\t-h\tprint sizes in human readable format (e.g., 1K 243M 2G )\n"
771         "\t-k\tprint sizes in kilobytes(default)\n"
772 #else
773         "\t-k\tprint sizes in kilobytes(compatability)"
774 #endif
775
776 #endif /*  BB_FEATURE_TRIVIAL_HELP */
777         ;
778 #endif /* BB_LS */
779
780 #if defined BB_LSMOD
781 const char lsmod_usage[] =
782         "lsmod"
783 #ifndef BB_FEATURE_TRIVIAL_HELP
784         "\n\nList the currently loaded kernel modules."
785 #endif
786         ;
787 #endif
788
789 #if defined BB_MAKEDEVS
790 const char makedevs_usage[] =
791         "makedevs NAME TYPE MAJOR MINOR FIRST LAST [s]"
792 #ifndef BB_FEATURE_TRIVIAL_HELP
793         "\n\nCreates a range of block or character special files\n\n"
794         "TYPEs include:\n"
795         "\tb:\tMake a block (buffered) device.\n"
796         "\tc or u:\tMake a character (un-buffered) device.\n"
797         "\tp:\tMake a named pipe. MAJOR and MINOR are ignored for named pipes.\n\n"
798         "FIRST specifies the number appended to NAME to create the first device.\n"
799         "LAST specifies the number of the last item that should be created.\n"
800         "If 's' is the last argument, the base device is created as well.\n\n"
801         "For example:\n"
802         "\tmakedevs /dev/ttyS c 4 66 2 63   ->  ttyS2-ttyS63\n"
803         "\tmakedevs /dev/hda b 3 0 0 8 s    ->  hda,hda1-hda8"
804 #endif
805         ;
806 #endif
807
808 #if defined BB_MD5SUM
809 const char md5sum_usage[] =
810         "md5sum [OPTION] [FILE]...\n"
811         "or:    md5sum [OPTION] -c [FILE]"
812 #ifndef BB_FEATURE_TRIVIAL_HELP
813         "\n\nPrint or check MD5 checksums.\n\n"
814         "Options:\n"
815         "With no FILE, or when FILE is -, read standard input.\n\n"
816         "\t-b\tread files in binary mode\n"
817         "\t-c\tcheck MD5 sums against given list\n"
818         "\t-t\tread files in text mode (default)\n"
819         "\t-g\tread a string\n"
820         "\nThe following two options are useful only when verifying checksums:\n"
821         "\t-s,\tdon't output anything, status code shows success\n"
822         "\t-w,\twarn about improperly formated MD5 checksum lines"
823 #endif
824         ;
825 #endif
826
827 #if defined BB_MKDIR
828 const char mkdir_usage[] =
829         "mkdir [OPTION] DIRECTORY..."
830 #ifndef BB_FEATURE_TRIVIAL_HELP
831         "\n\nCreate the DIRECTORY(ies), if they do not already exist\n\n"
832         
833         "Options:\n"
834         "\t-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n"
835         "\t-p\tno error if existing, make parent directories as needed"
836 #endif
837         ;
838 #endif
839
840 #if defined BB_MKFIFO
841 const char mkfifo_usage[] =
842         "mkfifo [OPTIONS] name"
843 #ifndef BB_FEATURE_TRIVIAL_HELP
844         "\n\nCreates a named pipe (identical to 'mknod name p')\n\n"
845         "Options:\n"
846         "\t-m\tcreate the pipe using the specified mode (default a=rw)"
847 #endif
848         ;
849 #endif
850
851 #if defined BB_MKFS_MINIX
852 const char mkfs_minix_usage[] =
853         "mkfs.minix [-c | -l filename] [-nXX] [-iXX] /dev/name [blocks]"
854 #ifndef BB_FEATURE_TRIVIAL_HELP
855         "\n\nMake a MINIX filesystem.\n\n"
856         "Options:\n"
857         "\t-c\t\tCheck the device for bad blocks\n"
858         "\t-n [14|30]\tSpecify the maximum length of filenames\n"
859         "\t-i INODES\tSpecify the number of inodes for the filesystem\n"
860         "\t-l FILENAME\tRead the bad blocks list from FILENAME\n"
861         "\t-v\t\tMake a Minix version 2 filesystem"
862 #endif
863         ;
864 #endif
865
866 #if defined BB_MKNOD
867 const char mknod_usage[] =
868         "mknod [OPTIONS] NAME TYPE MAJOR MINOR"
869 #ifndef BB_FEATURE_TRIVIAL_HELP
870         "\n\nCreate a special file (block, character, or pipe).\n\n"
871         "Options:\n"
872         "\t-m\tcreate the special file using the specified mode (default a=rw)\n\n"
873         "TYPEs include:\n"
874         "\tb:\tMake a block (buffered) device.\n"
875         "\tc or u:\tMake a character (un-buffered) device.\n"
876         "\tp:\tMake a named pipe. MAJOR and MINOR are ignored for named pipes."
877 #endif
878         ;
879 #endif
880
881 #if defined BB_MKSWAP
882 const char mkswap_usage[] =
883         "mkswap [-c] [-v0|-v1] device [block-count]"
884 #ifndef BB_FEATURE_TRIVIAL_HELP
885         "\n\nPrepare a disk partition to be used as a swap partition.\n\n"
886         "Options:\n" "\t-c\t\tCheck for read-ability.\n"
887         "\t-v0\t\tMake version 0 swap [max 128 Megs].\n"
888         "\t-v1\t\tMake version 1 swap [big!] (default for kernels > 2.1.117).\n"
889         "\tblock-count\tNumber of block to use (default is entire partition)."
890 #endif
891         ;
892 #endif
893
894 #if defined BB_MKTEMP
895 const char mktemp_usage[] =
896         "mktemp [-q] TEMPLATE"
897 #ifndef BB_FEATURE_TRIVIAL_HELP
898         "\n\nCreates a temporary file with its name based on TEMPLATE.\n"
899         "TEMPLATE is any name with six `Xs' (i.e. /tmp/temp.XXXXXX)."
900 #endif
901         ;
902 #endif
903
904 #if defined BB_MORE
905 const char more_usage[] =
906         "more [FILE ...]"
907 #ifndef BB_FEATURE_TRIVIAL_HELP
908         "\n\nMore is a filter for viewing FILE one screenful at a time."
909 #endif
910         ;
911 #endif
912
913 #if defined BB_MOUNT
914 const char mount_usage[] = 
915         "mount [flags] device directory [-o options,more-options]"
916 #ifndef BB_FEATURE_TRIVIAL_HELP
917         "\n\nMount a filesystem\n\n"
918         "Flags:\n" 
919         "\t-a:\t\tMount all filesystems in fstab.\n"
920 #ifdef BB_MTAB
921         "\t-f:\t\t\"Fake\" mount. Add entry to mount table but don't mount it.\n"
922         "\t-n:\t\tDon't write a mount table entry.\n"
923 #endif
924         "\t-o option:\tOne of many filesystem options, listed below.\n"
925         "\t-r:\t\tMount the filesystem read-only.\n"
926         "\t-t fs-type:\tSpecify the filesystem type.\n"
927         "\t-w:\t\tMount for reading and writing (default).\n"
928         "\n"
929         "Options for use with the \"-o\" flag:\n"
930         "\tasync/sync:\tWrites are asynchronous / synchronous.\n"
931         "\tatime/noatime:\tEnable / disable updates to inode access times.\n"
932         "\tdev/nodev:\tAllow use of special device files / disallow them.\n"
933         "\texec/noexec:\tAllow use of executable files / disallow them.\n"
934 #if defined BB_FEATURE_MOUNT_LOOP
935         "\tloop:\t\tMounts a file via loop device.\n"
936 #endif
937         "\tsuid/nosuid:\tAllow set-user-id-root programs / disallow them.\n"
938         "\tremount:\tRe-mount a currently-mounted filesystem, changing its flags.\n"
939         "\tro/rw:\t\tMount for read-only / read-write.\n"
940         "\nThere are EVEN MORE flags that are specific to each filesystem.\n"
941         "You'll have to see the written documentation for those."
942 #endif
943         ;
944 #endif
945
946 #if defined BB_MT
947 const char mt_usage[] =
948         "mt [-f device] opcode value"
949 #ifndef BB_FEATURE_TRIVIAL_HELP
950         "\n\nControl magnetic tape drive operation\n"
951         "\nAvailable Opcodes:\n\n"
952         "bsf bsfm bsr bss datacompression drvbuffer eof eom erase\n"
953         "fsf fsfm fsr fss load lock mkpart nop offline ras1 ras2\n"
954         "ras3 reset retension rew rewoffline seek setblk setdensity\n"
955         "setpart tell unload unlock weof wset"
956 #endif
957         ;
958 #endif
959
960 #if defined BB_CP_MV
961 const char mv_usage[] =
962         "mv SOURCE DEST\n"
963         "   or: mv SOURCE... DIRECTORY"
964 #ifndef BB_FEATURE_TRIVIAL_HELP
965         "\n\nRename SOURCE to DEST, or move SOURCE(s) to DIRECTORY."
966 #endif
967         ;
968 #endif
969
970 #if defined BB_NC
971 const char nc_usage[] =
972         "nc [-p PORT] IP PORT\n"
973         "   or: nc -l -p PORT"
974 #ifndef BB_FEATURE_TRIVIAL_HELP
975         "\n\nNetcat opens a pipe to IP:PORT\n"
976         "Options:\n"
977         "\t-l\tListen on the socket.\n"
978         "\t-p PORT\tBind the local port to PORT."
979 #endif
980         ;
981 #endif
982
983 #if defined BB_NSLOOKUP
984 const char nslookup_usage[] =
985         "nslookup [HOST]"
986 #ifndef BB_FEATURE_TRIVIAL_HELP
987         "\n\nQueries the nameserver for the IP address of the given HOST"
988 #endif
989 ;
990 #endif
991
992 #if defined BB_PING
993 #if defined BB_FEATURE_SIMPLE_PING
994 const char ping_usage[] =
995         "ping host"
996 #ifndef BB_FEATURE_TRIVIAL_HELP
997         "\n\nSend ICMP ECHO_REQUEST packets to network hosts"
998 #endif
999         ;
1000 #else /* ! defined BB_FEATURE_SIMPLE_PING */
1001 const char ping_usage[] =
1002         "ping [OPTION]... host"
1003 #ifndef BB_FEATURE_TRIVIAL_HELP
1004         "\n\nSend ICMP ECHO_REQUEST packets to network hosts.\n\n"
1005         "Options:\n"
1006         "\t-c COUNT\tSend only COUNT pings.\n"
1007         "\t-s SIZE\t\tSend SIZE data bytes in packets (default=56).\n"
1008         "\t-q\t\tQuiet mode, only displays output at start\n"
1009         "\t\t\tand when finished."
1010 #endif
1011         ;
1012 #endif
1013 #endif
1014
1015 #if defined BB_POWEROFF
1016 const char poweroff_usage[] =
1017         "poweroff"
1018 #ifndef BB_FEATURE_TRIVIAL_HELP
1019         "\n\nHalt the system and request that the kernel shut off the power."
1020 #endif
1021         ;
1022 #endif
1023
1024 #if defined BB_PRINTF
1025 const char printf_usage[] =
1026         "printf FORMAT [ARGUMENT...]"
1027 #ifndef BB_FEATURE_TRIVIAL_HELP
1028         "\n\nFormats and prints ARGUMENT(s) according to FORMAT,\n"
1029         "Where FORMAT controls the output exactly as in C printf."
1030 #endif
1031         ;
1032 #endif
1033
1034 #if defined BB_PS
1035 const char ps_usage[] =
1036         "ps"
1037 #ifndef BB_FEATURE_TRIVIAL_HELP
1038         "\n\nReport process status\n"
1039         "\nThis version of ps accepts no options."
1040 #endif
1041         ;
1042 #endif
1043
1044 #if defined BB_PWD
1045 const char pwd_usage[] =
1046         "pwd"
1047 #ifndef BB_FEATURE_TRIVIAL_HELP
1048         "\n\nPrint the full filename of the current working directory."
1049 #endif
1050         ;
1051 #endif
1052
1053 #if defined BB_RDATE
1054 const char rdate_usage[] =
1055         "rdate [OPTION] HOST"
1056 #ifndef BB_FEATURE_TRIVIAL_HELP
1057         "\n\nGet and possibly set the system date and time from a remote HOST.\n"
1058         "Options:\n"
1059         "\t-s\tSet the system date and time (default).\n"
1060         "\t-p\tPrint the date and time."
1061 #endif
1062         ;
1063 #endif
1064
1065 #if defined BB_READLINK
1066 const char readlink_usage[] =
1067         "readlink"
1068 #ifndef BB_FEATURE_TRIVIAL_HELP
1069         "\n\nRead a symbolic link."
1070 #endif
1071         ;
1072 #endif
1073
1074 #if defined BB_REBOOT
1075 const char reboot_usage[] =
1076         "reboot"
1077 #ifndef BB_FEATURE_TRIVIAL_HELP
1078         "\n\nReboot the system."
1079 #endif
1080         ;
1081 #endif
1082         
1083 #if defined BB_RENICE
1084 const char renice_usage[] =
1085         "renice priority pid [pid ...]"
1086 #ifndef BB_FEATURE_TRIVIAL_HELP
1087         "\n\nChanges priority of running processes. Allowed priorities range\n"
1088         "from 20 (the process runs only when nothing else is running) to 0\n"
1089         "(default priority) to -20 (almost nothing else ever gets to run)."
1090 #endif
1091         ;
1092 #endif
1093
1094
1095 #if defined BB_RESET
1096 const char reset_usage[] =
1097         "reset"
1098 #ifndef BB_FEATURE_TRIVIAL_HELP
1099         "\n\nResets the screen."
1100 #endif
1101         ;
1102 #endif
1103
1104 #if defined BB_RM
1105 const char rm_usage[] =
1106         "rm [OPTION]... FILE..."
1107 #ifndef BB_FEATURE_TRIVIAL_HELP
1108         "\n\nRemove (unlink) the FILE(s).  You may use '--' to\n"
1109         "indicate that all following arguments are non-options.\n\n"
1110         "Options:\n"
1111         "\t-f\t\tremove existing destinations, never prompt\n"
1112         "\t-r or -R\tremove the contents of directories recursively"
1113 #endif
1114         ;
1115 #endif
1116
1117 #if defined BB_RMDIR
1118 const char rmdir_usage[] =
1119         "rmdir [OPTION]... DIRECTORY..."
1120 #ifndef BB_FEATURE_TRIVIAL_HELP
1121         "\n\nRemove the DIRECTORY(ies), if they are empty."
1122 #endif
1123         ;
1124 #endif
1125
1126 #if defined BB_RMMOD
1127 const char rmmod_usage[] =
1128         "rmmod [OPTION]... [MODULE]..."
1129 #ifndef BB_FEATURE_TRIVIAL_HELP
1130         "\n\nUnloads the specified kernel modules from the kernel.\n\n"
1131         "Options:\n" 
1132         "\t-a\tTry to remove all unused kernel modules."
1133 #endif
1134         ;
1135 #endif
1136
1137 #if defined BB_RPMUNPACK
1138 const char rpmunpack_usage[] =
1139         "rpmunpack < package.rpm | gunzip | cpio -idmuv"
1140 #ifndef BB_FEATURE_TRIVIAL_HELP
1141         "\n\nExtracts an rpm archive."
1142 #endif
1143         ;
1144 #endif
1145
1146 #if defined BB_SED
1147 const char sed_usage[] =
1148         "sed [-Vhnef] pattern [files...]"
1149 #ifndef BB_FEATURE_TRIVIAL_HELP
1150         "\n\n"
1151         "-n\t\tsuppress automatic printing of pattern space\n"
1152         "-e script\tadd the script to the commands to be executed\n"
1153         "-f scriptfile\tadd the contents of script-file to the commands to be executed\n"
1154         "-h\t\tdisplay this help message\n"
1155         "\n"
1156         "If no -e or -f is given, the first non-option argument is taken as the\n"
1157         "sed script to interpret. All remaining arguments are names of input\n"
1158         "files; if no input files are specified, then the standard input is read."
1159 #endif
1160         ;
1161 #endif
1162
1163 #if defined BB_SETKEYCODES
1164 const char setkeycodes_usage[] =
1165         "setkeycodes SCANCODE KEYCODE ..."
1166 #ifndef BB_FEATURE_TRIVIAL_HELP
1167         "\n\nSet entries into the kernel's scancode-to-keycode map,\n"
1168         "allowing unusual keyboards to generate usable keycodes.\n\n" 
1169         "SCANCODE may be either xx or e0xx (hexadecimal),\n"
1170         "and KEYCODE is given in decimal"
1171 #endif
1172         ;
1173 #endif
1174
1175 #if defined BB_SH
1176 const char shell_usage[] =
1177         "sh [FILE]...\n"
1178         "   or: sh -c command [args]..."
1179 #ifndef BB_FEATURE_TRIVIAL_HELP
1180         "\n\nlash: The BusyBox command interpreter (shell)."
1181 #endif
1182         ;
1183 #endif
1184
1185 #if defined BB_SLEEP
1186 const char sleep_usage[] =
1187         "sleep N" 
1188 #ifndef BB_FEATURE_TRIVIAL_HELP
1189         "\n\nPause for N seconds."
1190 #endif
1191         ;
1192 #endif
1193
1194 #if defined BB_SORT
1195 const char sort_usage[] =
1196         "sort [-n]"
1197 #ifdef BB_FEATURE_SORT_REVERSE
1198         " [-r]"
1199 #endif
1200         " [FILE]..."
1201 #ifndef BB_FEATURE_TRIVIAL_HELP
1202         "\n\nSorts lines of text in the specified files"
1203 #endif
1204         ;
1205 #endif
1206
1207 #if defined BB_SWAPONOFF
1208 const char swapoff_usage[] =
1209         "swapoff [OPTION] [device]"
1210 #ifndef BB_FEATURE_TRIVIAL_HELP
1211         "\n\nStop swapping virtual memory pages on the given device.\n\n"
1212         "Options:\n"
1213         "\t-a\tStop swapping on all swap devices"
1214 #endif
1215         ;
1216 #endif
1217
1218 #if defined BB_SWAPONOFF
1219 const char swapon_usage[] =
1220         "swapon [OPTION] [device]"
1221 #ifndef BB_FEATURE_TRIVIAL_HELP
1222         "\n\nStart swapping virtual memory pages on the given device.\n\n"
1223         "Options:\n"
1224         "\t-a\tStart swapping on all swap devices"
1225 #endif
1226         ;
1227 #endif
1228
1229 #if defined BB_SYNC
1230 const char sync_usage[] =
1231         "sync"
1232 #ifndef BB_FEATURE_TRIVIAL_HELP
1233         "\n\nWrite all buffered filesystem blocks to disk."
1234 #endif
1235         ;
1236 #endif
1237
1238 #if defined BB_SYSLOGD
1239 const char syslogd_usage[] =
1240         "syslogd [OPTION]..."
1241 #ifndef BB_FEATURE_TRIVIAL_HELP
1242         "\n\nLinux system and kernel (provides klogd) logging utility.\n"
1243         "Note that this version of syslogd/klogd ignores /etc/syslog.conf.\n\n"
1244         "Options:\n"
1245         "\t-m NUM\t\tInterval between MARK lines (default=20min, 0=off)\n"
1246         "\t-n\t\tRun as a foreground process\n"
1247 #ifdef BB_FEATURE_KLOGD
1248         "\t-K\t\tDo not start up the klogd process\n"
1249 #endif
1250         "\t-O FILE\t\tUse an alternate log file (default=/var/log/messages)"
1251 #ifdef BB_FEATURE_REMOTE_LOG
1252         "\n\t-R HOST[:PORT]\t\tLog remotely to IP or hostname on PORT (default PORT=514/UDP)\n"
1253         "\t-L\t\tLog locally as well as network logging (default is network only)"
1254 #endif
1255 #endif
1256         ;
1257 #endif
1258
1259 #if defined BB_TAIL
1260 const char tail_usage[] =
1261         "tail [OPTION]... [FILE]..."
1262 #ifndef BB_FEATURE_TRIVIAL_HELP
1263         "\n\nPrint last 10 lines of each FILE to standard output.\n"
1264         "With more than one FILE, precede each with a header giving the\n"
1265         "file name. With no FILE, or when FILE is -, read standard input.\n\n"
1266         "Options:\n"
1267 #ifndef BB_FEATURE_SIMPLE_TAIL
1268         "\t-c N[kbm]\toutput the last N bytes\n"
1269 #endif
1270         "\t-n N[kbm]\tprint last N lines instead of last 10\n"
1271         "\t-f\t\toutput data as the file grows"
1272 #ifndef BB_FEATURE_SIMPLE_TAIL
1273         "\n\t-q\t\tnever output headers giving file names\n"
1274         "\t-s SEC\t\twait SEC seconds between reads with -f\n"
1275         "\t-v\t\talways output headers giving file names\n\n"
1276         "If the first character of N (bytes or lines) is a `+', output begins with \n"
1277         "the Nth item from the start of each file, otherwise, print the last N items\n"
1278         "in the file. N bytes may be suffixed by k (x1024), b (x512), or m (1024^2)."
1279 //#else
1280 //      "\nIf the first character of N (bytes or lines) is a `+', output begins with \n"
1281 //      "the Nth item from the start of each file."
1282 #endif
1283 #endif
1284         ;
1285 #endif
1286
1287 #if defined BB_TAR
1288 const char tar_usage[] =
1289 #ifdef BB_FEATURE_TAR_CREATE
1290         "tar -[cxtvO] "
1291 #else
1292         "tar -[xtvO] "
1293 #endif
1294 #if defined BB_FEATURE_TAR_EXCLUDE
1295         "[--exclude File] "
1296         "[-X File]"
1297 #endif
1298         "[-f tarFile] [FILE(s)] ..."
1299 #ifndef BB_FEATURE_TRIVIAL_HELP
1300         "\n\nCreate, extract, or list files from a tar file.\n\n"
1301         "Main operation mode:\n"
1302 #ifdef BB_FEATURE_TAR_CREATE
1303         "\tc\t\tcreate\n"
1304 #endif
1305         "\tx\t\textract\n"
1306         "\tt\t\tlist\n"
1307         "\nFile selection:\n"
1308         "\tf\t\tname of tarfile or \"-\" for stdin\n"
1309         "\tO\t\textract to stdout\n"
1310 #if defined BB_FEATURE_TAR_EXCLUDE
1311         "\texclude\t\tfile to exclude\n"
1312         "\tX\t\tfile with names to exclude\n"
1313 #endif
1314         "\nInformative output:\n"
1315         "\tv\t\tverbosely list files processed"
1316 #endif
1317         ;
1318 #endif
1319
1320 #if defined BB_TEE
1321 const char tee_usage[] =
1322         "tee [OPTION]... [FILE]..."
1323 #ifndef BB_FEATURE_TRIVIAL_HELP
1324         "\n\nCopy standard input to each FILE, and also to standard output.\n\n"
1325         "Options:\n" "\t-a\tappend to the given FILEs, do not overwrite"
1326 #endif
1327         ;
1328 #endif
1329
1330 #if defined BB_TELNET
1331 const char telnet_usage[] =
1332         "telnet host [port]"
1333 #ifndef BB_FEATURE_TRIVIAL_HELP
1334         "\n\nTelnet is used to establish interactive communication with another\n"
1335         "computer over a network using the TELNET protocol."
1336 #endif
1337         ;
1338 #endif
1339
1340 #if defined BB_TEST
1341 const char test_usage[] =
1342         "test EXPRESSION\n"
1343         "or   [ EXPRESSION ]"
1344 #ifndef BB_FEATURE_TRIVIAL_HELP
1345         "\n\nChecks file types and compares values returning an exit\n"
1346         "code determined by the value of EXPRESSION."
1347 #endif
1348         ;
1349 #endif
1350
1351 #if defined BB_TOUCH
1352 const char touch_usage[] =
1353         "touch [-c] file [file ...]"
1354 #ifndef BB_FEATURE_TRIVIAL_HELP
1355         "\n\nUpdate the last-modified date on the given file[s].\n\n"
1356         "Options:\n"
1357         "\t-c\tDo not create any files"
1358 #endif
1359         ;
1360 #endif
1361
1362 #if defined BB_TR
1363 const char tr_usage[] =
1364         "tr [-cds] STRING1 [STRING2]"
1365 #ifndef BB_FEATURE_TRIVIAL_HELP
1366         "\n\nTranslate, squeeze, and/or delete characters from\n"
1367         "standard input, writing to standard output.\n\n"
1368         "Options:\n"
1369         "\t-c\ttake complement of STRING1\n"
1370         "\t-d\tdelete input characters coded STRING1\n"
1371         "\t-s\tsqueeze multiple output characters of STRING2 into one character"
1372 #endif
1373         ;
1374 #endif
1375
1376 #if defined BB_TRUE_FALSE
1377 const char true_usage[] =
1378         "true"
1379 #ifndef BB_FEATURE_TRIVIAL_HELP
1380         "\n\nReturn an exit code of TRUE (0)."
1381 #endif
1382         ;
1383 #endif
1384
1385 #if defined BB_TTY
1386 const char tty_usage[] =
1387         "tty"
1388 #ifndef BB_FEATURE_TRIVIAL_HELP
1389         "\n\nPrint the file name of the terminal connected to standard input.\n\n"
1390         "Options:\n"
1391         "\t-s\tprint nothing, only return an exit status"
1392 #endif
1393         ;
1394 #endif
1395
1396 #if defined BB_UMOUNT
1397 const char umount_usage[] =
1398         "umount [flags] filesystem|directory"
1399 #ifndef BB_FEATURE_TRIVIAL_HELP
1400         "\nUnmount file systems\n"
1401         "\nFlags:\n" "\t-a:\tUnmount all file systems"
1402 #ifdef BB_MTAB
1403         " in /etc/mtab\n\t-n:\tDon't erase /etc/mtab entries\n"
1404 #else
1405         "\n"
1406 #endif
1407         "\t-r:\tTry to remount devices as read-only if mount is busy"
1408 #if defined BB_FEATURE_MOUNT_FORCE
1409         "\n\t-f:\tForce filesystem umount (i.e. unreachable NFS server)"
1410 #endif
1411 #if defined BB_FEATURE_MOUNT_LOOP
1412         "\n\t-l:\tDo not free loop device (if a loop device has been used)"
1413 #endif
1414 #endif
1415         ;
1416 #endif
1417
1418 #if defined BB_UNAME
1419 const char uname_usage[] =
1420         "uname [OPTION]..."
1421 #ifndef BB_FEATURE_TRIVIAL_HELP
1422         "\n\nPrint certain system information.  With no OPTION, same as -s.\n\n"
1423         "Options:\n"
1424         "\t-a\tprint all information\n"
1425         "\t-m\tthe machine (hardware) type\n"
1426         "\t-n\tprint the machine's network node hostname\n"
1427         "\t-r\tprint the operating system release\n"
1428         "\t-s\tprint the operating system name\n"
1429
1430         "\t-p\tprint the host processor type\n"
1431         "\t-v\tprint the operating system version"
1432 #endif
1433         ;
1434 #endif
1435
1436 #if defined BB_UNIQ
1437 const char uniq_usage[] =
1438         "uniq [OPTION]... [INPUT [OUTPUT]]"
1439 #ifndef BB_FEATURE_TRIVIAL_HELP
1440         "\n\nDiscard all but one of successive identical lines from INPUT\n"
1441         "(or standard input), writing to OUTPUT (or standard output).\n"
1442         "Options:\n"
1443         "\t-c\tprefix lines by the number of occurrences\n"
1444         "\t-d\tonly print duplicate lines\n"
1445         "\t-u\tonly print unique lines"
1446 #endif
1447         ;
1448 #endif
1449
1450 #if defined BB_UNIX2DOS
1451 const char unix2dos_usage[] =
1452         "unix2dos < unixfile > dosfile"
1453 #ifndef BB_FEATURE_TRIVIAL_HELP
1454         "\n\nConverts a text file from unix format to dos format."
1455 #endif
1456         ;
1457 #endif
1458
1459 #if defined BB_UPDATE
1460 const char update_usage[] =
1461         "update [options]"
1462 #ifndef BB_FEATURE_TRIVIAL_HELP
1463         "\n\nPeriodically flushes filesystem buffers.\n\n"
1464         "Options:\n"
1465         "\t-S\tforce use of sync(2) instead of flushing\n"
1466         "\t-s SECS\tcall sync this often (default 30)\n"
1467         "\t-f SECS\tflush some buffers this often (default 5)"
1468 #endif
1469         ;
1470 #endif
1471
1472 #if defined BB_UPTIME
1473 const char uptime_usage[] =
1474         "uptime"
1475 #ifndef BB_FEATURE_TRIVIAL_HELP
1476         "\n\nDisplay the time since the last boot."
1477 #endif
1478         ;
1479 #endif
1480
1481 #if defined BB_USLEEP
1482 const char usleep_usage[] =
1483         "usleep N" 
1484 #ifndef BB_FEATURE_TRIVIAL_HELP
1485         "\n\nPause for N microseconds."
1486 #endif
1487         ;
1488 #endif
1489
1490 #if defined BB_UUDECODE
1491 const char uudecode_usage[] =
1492         "uudecode [FILE]..."
1493 #ifndef BB_FEATURE_TRIVIAL_HELP
1494         "\n\nUudecode a file that is uuencoded.\n\n"
1495         "Options:\n"
1496         "\t-o FILE\tdirect output to FILE"
1497 #endif
1498         ;
1499 #endif
1500
1501 #if defined BB_UUENCODE
1502 const char uuencode_usage[] =
1503         "uuencode [OPTION] [INFILE] REMOTEFILE"
1504 #ifndef BB_FEATURE_TRIVIAL_HELP
1505         "\n\nUuencode a file.\n\n"
1506         "Options:\n"
1507         "\t-m\tuse base64 encoding as of RFC1521"
1508 #endif
1509         ;
1510 #endif
1511
1512 #if defined BB_WATCHDOG
1513 const char watchdog_usage[] =
1514         "watchdog dev\n"
1515 #ifndef BB_FEATURE_TRIVIAL_HELP
1516         "\nPeriodically write to watchdog device \"dev\".\n"
1517 #endif
1518         ;
1519 #endif
1520
1521 #if defined BB_WC
1522 const char wc_usage[] =
1523         "wc [OPTION]... [FILE]..."
1524 #ifndef BB_FEATURE_TRIVIAL_HELP
1525         "\n\nPrint line, word, and byte counts for each FILE, and a total line if\n"
1526         "more than one FILE is specified.  With no FILE, read standard input.\n\n"
1527         "Options:\n"
1528         "\t-c\tprint the byte counts\n"
1529         "\t-l\tprint the newline counts\n"
1530
1531         "\t-L\tprint the length of the longest line\n"
1532         "\t-w\tprint the word counts"
1533 #endif
1534         ;
1535 #endif
1536
1537 #if defined BB_WGET
1538 const char wget_usage[] = "wget [-c] [-O file] url"
1539 #ifndef BB_FEATURE_TRIVIAL_HELP
1540         "\n\nwget retrieves files via HTTP\n\n"
1541         "Options:\n"
1542         "\t-c\tcontinue retrieval of aborted transfers\n"
1543         "\t-O\tsave to filename ('-' for stdout)"
1544 #endif
1545         ;
1546 #endif
1547
1548 #if defined BB_WHICH
1549 const char which_usage[] =
1550         "which [COMMAND ...]"
1551 #ifndef BB_FEATURE_TRIVIAL_HELP
1552         "\n\nLocates a COMMAND."
1553 #endif
1554         ;
1555 #endif
1556
1557 #if defined BB_WHOAMI
1558 const char whoami_usage[] =
1559         "whoami"
1560 #ifndef BB_FEATURE_TRIVIAL_HELP
1561         "\n\nPrints the user name associated with the current effective user id."
1562 #endif
1563         ;
1564 #endif
1565
1566 #if defined BB_XARGS
1567 const char xargs_usage[] = "xargs [COMMAND] [ARGS...]"
1568 #ifndef BB_FEATURE_TRIVIAL_HELP
1569         "\n\nExecutes COMMAND on every item given by standard input." 
1570 #endif
1571         ;
1572 #endif
1573
1574 #if defined BB_YES
1575 const char yes_usage[] =
1576         "yes [OPTION]... [STRING]..."
1577 #ifndef BB_FEATURE_TRIVIAL_HELP
1578         "\n\nRepeatedly outputs a line with all specified STRING(s), or `y'."
1579 #endif
1580         ;
1581 #endif
1582