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