kbd_mode: new applet by Loïc Grenié <loic.grenie@gmail.com>
[oweals/busybox.git] / include / usage.h
1 /* vi: set sw=8 ts=8: */
2 /*
3  * This file suffers from chronically incorrect tabification
4  * of messages. Before editing this file:
5  * 1. Switch you editor to 8-space tab mode.
6  * 2. Do not use \t in messages, use real tab character.
7  * 3. Start each source line with message as follows:
8  *    |<7 spaces>"text with tabs"....
9  */
10
11 #ifndef __BB_USAGE_H__
12 #define __BB_USAGE_H__
13
14 #define addgroup_trivial_usage \
15        "[-g GID]"USE_FEATURE_ADDUSER_TO_GROUP(" [user_name]")" group_name"
16 #define addgroup_full_usage \
17        "Add a group to the system"USE_FEATURE_ADDUSER_TO_GROUP(" or add an user to a group") \
18        "\n\nOptions:\n" \
19        "        -g GID  Group id"
20
21 #define adduser_trivial_usage \
22        "[OPTIONS] user_name"
23 #define adduser_full_usage \
24        "Add a user to the system" \
25        "\n\nOptions:\n" \
26        "        -h DIR          Home directory\n" \
27        "        -g GECOS        GECOS field\n" \
28        "        -s SHELL        Login shell\n" \
29        "        -G GROUP        Add user to existing group\n" \
30        "        -S              Create a system user (ignored)\n" \
31        "        -D              Do not assign a password\n" \
32        "        -H              Do not create home directory"
33
34 #define adjtimex_trivial_usage \
35        "[-q] [-o offset] [-f frequency] [-p timeconstant] [-t tick]"
36 #define adjtimex_full_usage \
37        "Read and optionally set system timebase parameters.\n" \
38        "See adjtimex(2)." \
39        "\n\nOptions:\n" \
40        "        -q              Quiet\n" \
41        "        -o offset       Time offset, microseconds\n" \
42        "        -f frequency    Frequency adjust, integer kernel units (65536 is 1ppm)\n" \
43        "                        (positive values make clock run faster)\n" \
44        "        -t tick         Microseconds per tick, usually 10000\n" \
45        "        -p timeconstant"
46
47 #define ar_trivial_usage \
48        "[-o] [-v] [-p] [-t] [-x] ARCHIVE FILES"
49 #define ar_full_usage \
50        "Extract or list FILES from an ar archive" \
51        "\n\nOptions:\n" \
52        "        -o      Preserve original dates\n" \
53        "        -p      Extract to stdout\n" \
54        "        -t      List\n" \
55        "        -x      Extract\n" \
56        "        -v      Verbose"
57
58 #define arp_trivial_usage \
59        "\n" \
60        "[-vn]   [-H type] [-i if] -a [hostname]\n" \
61        "[-v]              [-i if] -d hostname [pub]\n" \
62        "[-v]    [-H type] [-i if] -s hostname hw_addr [temp]\n" \
63        "[-v]    [-H type] [-i if] -s hostname hw_addr [netmask nm] pub\n" \
64        "[-v]    [-H type] [-i if] -Ds hostname ifa [netmask nm] pub\n"
65 #define arp_full_usage \
66        "Manipulate the system ARP cache" \
67        "\n\nOptions:" \
68        "\n      -a              Display (all) hosts" \
69        "\n      -s              Set a new ARP entry" \
70        "\n      -d              Delete a specified entry" \
71        "\n      -v              Verbose" \
72        "\n      -n              Don't resolve names" \
73        "\n      -i if           Network interface (e.g. eth0)" \
74        "\n      -D              Read <hwaddr> from given device" \
75        "\n      -A, -p          Protocol family" \
76        "\n      -H hwtype       Hardware address type"
77
78 #define arping_trivial_usage \
79        "[-fqbDUA] [-c count] [-w timeout] [-i device] [-s sender] target"
80 #define arping_full_usage \
81        "Ping hosts by ARP requests/replies" \
82        "\n\nOptions:\n" \
83        "        -f              Quit on first ARP reply\n" \
84        "        -q              Quiet\n" \
85        "        -b              Keep broadcasting, don't go unicast\n" \
86        "        -D              Duplicated address detection mode\n" \
87        "        -U              Unsolicited ARP mode, update your neighbours\n" \
88        "        -A              ARP answer mode, update your neighbours\n" \
89        "        -c count        Stop after sending count ARP request packets\n" \
90        "        -w timeout      Time to wait for ARP reply, in seconds\n" \
91        "        -I device       Outgoing interface name, default is eth0\n" \
92        "        -s sender       Set specific sender IP address\n" \
93        "        target          Target IP address of ARP request"
94
95 #define ash_trivial_usage \
96        "[FILE]...\n" \
97        "or: ash -c command [args]..."
98 #define ash_full_usage \
99        "The ash shell (command interpreter)"
100
101 #define awk_trivial_usage \
102        "[OPTION]... [program-text] [FILE ...]"
103 #define awk_full_usage \
104        "Options:\n" \
105        "        -v var=val      Set variable\n" \
106        "        -F sep          Use sep as field separator\n" \
107        "        -f file         Read program from file"
108
109 #define basename_trivial_usage \
110        "FILE [SUFFIX]"
111 #define basename_full_usage \
112        "Strip directory path and suffixes from FILE.\n" \
113        "If specified, also remove any trailing SUFFIX."
114 #define basename_example_usage \
115        "$ basename /usr/local/bin/foo\n" \
116        "foo\n" \
117        "$ basename /usr/local/bin/\n" \
118        "bin\n" \
119        "$ basename /foo/bar.txt .txt\n" \
120        "bar"
121
122 #define bunzip2_trivial_usage \
123        "[OPTION]... [FILE]"
124 #define bunzip2_full_usage \
125        "Uncompress FILE (or standard input if FILE is '-' or omitted)" \
126        "\n\nOptions:\n" \
127        "        -c      Write output to standard output\n" \
128        "        -f      Force"
129
130 #define bzip2_trivial_usage \
131        "[OPTION]... [FILE]..."
132 #define bzip2_full_usage \
133        "Compress FILE(s) with bzip2 algorithm.\n" \
134        "When FILE is '-' or unspecified, reads standard input. Implies -c." \
135        "\n\nOptions:" \
136        "\n      -c      Write output to standard output instead of FILE.bz2" \
137        "\n      -d      Decompress" \
138        "\n      -f      Force" \
139        "\n      -1..-9  Compression level"
140
141 #define busybox_notes_usage \
142        "Hello world!\n"
143
144 #define bzcat_trivial_usage \
145        "FILE"
146 #define bzcat_full_usage \
147        "Uncompress to stdout"
148
149 #define unlzma_trivial_usage \
150        "[OPTION]... [FILE]"
151 #define unlzma_full_usage \
152        "Uncompress FILE (or standard input if FILE is '-' or omitted)" \
153        "\n\nOptions:\n" \
154        "        -c      Write output to standard output\n" \
155        "        -f      Force"
156
157 #define lzmacat_trivial_usage \
158        "FILE"
159 #define lzmacat_full_usage \
160        "Uncompress to stdout"
161
162 #define cal_trivial_usage \
163        "[-jy] [[month] year]"
164 #define cal_full_usage \
165        "Display a calendar" \
166        "\n\nOptions:" \
167        "\n      -j      Use julian dates" \
168        "\n      -y      Display the entire year"
169
170 #define cat_trivial_usage \
171        "[-u] [FILE]..."
172 #define cat_full_usage \
173        "Concatenate FILE(s) and print them to stdout" \
174        "\n\nOptions:" \
175        "\n      -u      Use unbuffered i/o (ignored)"
176 #define cat_example_usage \
177        "$ cat /proc/uptime\n" \
178        "110716.72 17.67"
179
180 #define catv_trivial_usage \
181        "[-etv] [FILE]..."
182 #define catv_full_usage \
183        "Display nonprinting characters as ^x or M-x" \
184        "\n\nOptions:\n" \
185        "        -e      End each line with $\n" \
186        "        -t      Show tabs as ^I\n" \
187        "        -v      Don't use ^x or M-x escapes"
188 #define chattr_trivial_usage \
189        "[-R] [-+=AacDdijsStTu] [-v version] files..."
190 #define chattr_full_usage \
191        "Change file attributes on an ext2 fs\n\n" \
192        "Modifiers:\n" \
193        "        -       Remove attributes\n" \
194        "        +       Add attributes\n" \
195        "        =       Set attributes\n" \
196        "Attributes:\n" \
197        "        A       Don't track atime\n" \
198        "        a       Append mode only\n" \
199        "        c       Enable compress\n" \
200        "        D       Write dir contents synchronously\n" \
201        "        d       Do not backup with dump\n" \
202        "        i       Cannot be modified (immutable)\n" \
203        "        j       Write all data to journal first\n" \
204        "        s       Zero disk storage when deleted\n" \
205        "        S       Write file contents synchronously\n" \
206        "        t       Disable tail-merging of partial blocks with other files\n" \
207        "        u       Allow file to be undeleted\n" \
208        "Options:\n" \
209        "        -R      Recursively list subdirectories\n" \
210        "        -v      Set the file's version/generation number"
211
212 #define chcon_trivial_usage \
213        "[OPTIONS] CONTEXT FILE..." \
214        "\n      chcon [OPTIONS] [-u USER] [-r ROLE] [-l RANGE] [-t TYPE] FILE..." \
215         USE_FEATURE_CHCON_LONG_OPTIONS( \
216        "\n      chcon [OPTIONS] --reference=RFILE FILE..." \
217         )
218 #define chcon_full_usage \
219        "Change the security context of each FILE to CONTEXT\n" \
220         USE_FEATURE_CHCON_LONG_OPTIONS( \
221        "\n      -v,--verbose            Verbose" \
222        "\n      -c,--changes            Report changes made" \
223        "\n      -h,--no-dereference     Affect symlinks instead of their targets" \
224        "\n      -f,--silent,--quiet     Suppress most error messages" \
225        "\n      --reference=RFILE       Use RFILE's group instead of using a CONTEXT value" \
226        "\n      -u,--user=USER          Set user USER in the target security context" \
227        "\n      -r,--role=ROLE          Set role ROLE in the target security context" \
228        "\n      -t,--type=TYPE          Set type TYPE in the target security context" \
229        "\n      -l,--range=RANGE        Set range RANGE in the target security context" \
230        "\n      -R,--recursive          Recurse subdirectories" \
231         ) \
232         SKIP_FEATURE_CHCON_LONG_OPTIONS( \
233        "\n      -v      Verbose" \
234        "\n      -c      Report changes made" \
235        "\n      -h      Affect symlinks instead of their targets" \
236        "\n      -f      Suppress most error messages" \
237        "\n      -u USER Set user USER in the target security context" \
238        "\n      -r ROLE Set role ROLE in the target security context" \
239        "\n      -t TYPE Set type TYPE in the target security context" \
240        "\n      -l RNG  Set range RNE in the target security context" \
241        "\n      -R      Recurse subdirectories" \
242         )
243
244
245 #define chmod_trivial_usage \
246        "[-R"USE_DESKTOP("cvf")"] MODE[,MODE]... FILE..."
247 #define chmod_full_usage \
248        "Each MODE is one or more of the letters ugoa, one of the\n" \
249        "symbols +-= and one or more of the letters rwxst" \
250        "\n\nOptions:" \
251        "\n      -R      Recurse directories" \
252         USE_DESKTOP( \
253        "\n      -c      List changed files" \
254        "\n      -v      List all files" \
255        "\n      -f      Hide errors" \
256         )
257 #define chmod_example_usage \
258        "$ ls -l /tmp/foo\n" \
259        "-rw-rw-r--    1 root     root            0 Apr 12 18:25 /tmp/foo\n" \
260        "$ chmod u+x /tmp/foo\n" \
261        "$ ls -l /tmp/foo\n" \
262        "-rwxrw-r--    1 root     root            0 Apr 12 18:25 /tmp/foo*\n" \
263        "$ chmod 444 /tmp/foo\n" \
264        "$ ls -l /tmp/foo\n" \
265        "-r--r--r--    1 root     root            0 Apr 12 18:25 /tmp/foo\n"
266
267 #define chgrp_trivial_usage \
268        "[-RhLHP"USE_DESKTOP("cvf")"]... GROUP FILE..."
269 #define chgrp_full_usage \
270        "Change the group membership of each FILE to GROUP" \
271        "\n\nOptions:" \
272        "\n      -R      Recurse directories" \
273        "\n      -h      Affect symlinks instead of symlink targets" \
274        "\n      -L      Traverse all symlinks to directories" \
275        "\n      -H      Traverse symlinks on command line only" \
276        "\n      -P      Do not traverse symlinks (default)" \
277         USE_DESKTOP( \
278        "\n      -c      List changed files" \
279        "\n      -v      Verbose" \
280        "\n      -f      Hide errors" \
281         )
282 #define chgrp_example_usage \
283        "$ ls -l /tmp/foo\n" \
284        "-r--r--r--    1 andersen andersen        0 Apr 12 18:25 /tmp/foo\n" \
285        "$ chgrp root /tmp/foo\n" \
286        "$ ls -l /tmp/foo\n" \
287        "-r--r--r--    1 andersen root            0 Apr 12 18:25 /tmp/foo\n"
288
289 #define chown_trivial_usage \
290        "[-RhLHP"USE_DESKTOP("cvf")"]... OWNER[<.|:>[GROUP]] FILE..."
291 #define chown_full_usage \
292        "Change the owner and/or group of each FILE to OWNER and/or GROUP" \
293        "\n\nOptions:" \
294        "\n      -R      Recurse directories" \
295        "\n      -h      Affect symlinks instead of symlink targets" \
296        "\n      -L      Traverse all symlinks to directories" \
297        "\n      -H      Traverse symlinks on command line only" \
298        "\n      -P      Do not traverse symlinks (default)" \
299         USE_DESKTOP( \
300        "\n      -c      List changed files" \
301        "\n      -v      List all files" \
302        "\n      -f      Hide errors" \
303         )
304 #define chown_example_usage \
305        "$ ls -l /tmp/foo\n" \
306        "-r--r--r--    1 andersen andersen        0 Apr 12 18:25 /tmp/foo\n" \
307        "$ chown root /tmp/foo\n" \
308        "$ ls -l /tmp/foo\n" \
309        "-r--r--r--    1 root     andersen        0 Apr 12 18:25 /tmp/foo\n" \
310        "$ chown root.root /tmp/foo\n" \
311        "ls -l /tmp/foo\n" \
312        "-r--r--r--    1 root     root            0 Apr 12 18:25 /tmp/foo\n"
313
314 #define chpst_trivial_usage \
315        "[-vP012] [-u user[:group]] [-U user[:group]] [-e dir] " \
316        "[-/ dir] [-n nice] [-m bytes] [-d bytes] [-o files] " \
317        "[-p processes] [-f bytes] [-c bytes] prog args"
318 #define chpst_full_usage \
319        "Change the process state and run specified program" \
320        "\n\nOptions:\n" \
321        "        -u user[:grp]   Set uid and gid\n" \
322        "        -U user[:grp]   Set environment variables UID and GID\n" \
323        "        -e dir          Set environment variables as specified by files\n" \
324        "                        in the directory: file=1st_line_of_file\n" \
325        "        -/ dir          Chroot to dir\n" \
326        "        -n inc          Add inc to nice value\n" \
327        "        -m bytes        Limit data segment, stack segment, locked physical pages,\n" \
328        "                        and total of all segment per process to bytes bytes each\n" \
329        "        -d bytes        Limit data segment\n" \
330        "        -o n            Limit the number of open file descriptors per process to n\n" \
331        "        -p n            Limit number of processes per uid to n\n" \
332        "        -f bytes        Limit output file size to bytes bytes\n" \
333        "        -c bytes        Limit core file size to bytes bytes\n" \
334        "        -v              Verbose\n" \
335        "        -P              Run prog in a new process group\n" \
336        "        -0              Close standard input\n" \
337        "        -1              Close standard output\n" \
338        "        -2              Close standard error"
339 #define setuidgid_trivial_usage \
340        "account prog args"
341 #define setuidgid_full_usage \
342        "Set uid and gid to account's uid and gid, removing all supplementary\n" \
343        "groups, then run prog"
344 #define envuidgid_trivial_usage \
345        "account prog args"
346 #define envuidgid_full_usage \
347        "Set $UID to account's uid and $GID to account's gid, then run prog"
348 #define envdir_trivial_usage \
349        "dir prog args"
350 #define envdir_full_usage \
351        "Set various environment variables as specified by files\n" \
352        "in the directory dir, then run prog"
353 #define softlimit_trivial_usage \
354        "[-a allbytes] [-c corebytes] [-d databytes] [-f filebytes] " \
355        "[-l lockbytes] [-m membytes] [-o openfiles] [-p processes] " \
356        "[-r residentbytes] [-s stackbytes] [-t cpusecs] prog args"
357 #define softlimit_full_usage \
358        "Set soft resource limits, then run prog" \
359        "\n\nOptions:\n" \
360        "        -m n    Same as -d n -s n -l n -a n\n" \
361        "        -d n    Limit the data segment per process to n bytes\n" \
362        "        -s n    Limit the stack segment per process to n bytes\n" \
363        "        -l n    Limit the locked physical pages per process to n bytes\n" \
364        "        -a n    Limit the total of all segments per process to n bytes\n" \
365        "        -o n    Limit the number of open file descriptors per process to n\n" \
366        "        -p n    Limit the number of processes per uid to n\n" \
367        "Options controlling file sizes:\n" \
368        "        -f n    Limit output file sizes to n bytes\n" \
369        "        -c n    Limit core file sizes to n bytes\n" \
370        "Efficiency opts:\n" \
371        "        -r n    Limit the resident set size to n bytes. This limit is not\n" \
372        "                enforced unless physical memory is full\n" \
373        "        -t n    Limit the CPU time to n seconds. This limit is not enforced\n" \
374        "                except that the process receives a SIGXCPU signal after n seconds\n" \
375        "\n" \
376        "Some options may have no effect on some operating systems\n" \
377        "n may be =, indicating that soft limit should be set equal to hard limit"
378
379 #define chroot_trivial_usage \
380        "NEWROOT [COMMAND...]"
381 #define chroot_full_usage \
382        "Run COMMAND with root directory set to NEWROOT"
383 #define chroot_example_usage \
384        "$ ls -l /bin/ls\n" \
385        "lrwxrwxrwx    1 root     root          12 Apr 13 00:46 /bin/ls -> /BusyBox\n" \
386        "# mount /dev/hdc1 /mnt -t minix\n" \
387        "# chroot /mnt\n" \
388        "# ls -l /bin/ls\n" \
389        "-rwxr-xr-x    1 root     root        40816 Feb  5 07:45 /bin/ls*\n"
390
391 #define chvt_trivial_usage \
392        "N"
393 #define chvt_full_usage \
394        "Change the foreground virtual terminal to /dev/ttyN"
395
396 #define cksum_trivial_usage \
397        "FILES..."
398 #define cksum_full_usage \
399        "Calculate the CRC32 checksums of FILES"
400
401 #define clear_trivial_usage \
402        ""
403 #define clear_full_usage \
404        "Clear screen"
405
406 #define cmp_trivial_usage \
407        "[-l] [-s] FILE1 [FILE2" USE_DESKTOP(" [SKIP1 [SKIP2]") "]]"
408 #define cmp_full_usage \
409        "Compares FILE1 vs stdin if FILE2 is not specified" \
410        "\n\nOptions:\n" \
411        "        -l      Write the byte numbers (decimal) and values (octal)\n" \
412        "                for all differing bytes\n" \
413        "        -s      Quiet"
414
415 #define comm_trivial_usage \
416        "[-123] FILE1 FILE2"
417 #define comm_full_usage \
418        "Compare FILE1 to FILE2, or to stdin if - is specified" \
419        "\n\nOptions:\n" \
420        "        -1      Suppress lines unique to FILE1\n" \
421        "        -2      Suppress lines unique to FILE2\n" \
422        "        -3      Suppress lines common to both files"
423
424 #define bbconfig_trivial_usage \
425        ""
426 #define bbconfig_full_usage \
427        "Print the config file which built busybox"
428
429 #define bbsh_trivial_usage \
430        "[FILE]...\n" \
431        "or: bbsh -c command [args]..."
432 #define bbsh_full_usage \
433        "The bbsh shell (command interpreter)"
434
435 #define chrt_trivial_usage \
436        "[OPTION]... [prio] [pid | command [arg]...]"
437 #define chrt_full_usage \
438        "manipulate real-time attributes of a process" \
439        "\n\nOptions:\n" \
440        "        -p      operate on pid\n" \
441        "        -r      set scheduling policy to SCHED_RR\n" \
442        "        -f      set scheduling policy to SCHED_FIFO\n" \
443        "        -o      set scheduling policy to SCHED_OTHER\n" \
444        "        -m      show min and max priorities"
445
446 #define chrt_example_usage \
447        "$ chrt -r 4 sleep 900; x=$!\n" \
448        "$ chrt -f -p 3 $x\n" \
449        "You need CAP_SYS_NICE privileges to set scheduling attributes of a process"
450
451 #define cp_trivial_usage \
452        "[OPTION]... SOURCE DEST"
453 #define cp_full_usage \
454        "Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY" \
455        "\n\nOptions:" \
456        "\n      -a      Same as -dpR" \
457         USE_SELINUX( \
458        "\n      -c      Preserves security context" \
459         ) \
460        "\n      -d,-P   Preserve links" \
461        "\n      -H,-L   Dereference all symlinks (default)" \
462        "\n      -p      Preserve file attributes if possible" \
463        "\n      -f      Force overwrite" \
464        "\n      -i      Prompt before overwrite" \
465        "\n      -R,-r   Recurse directories" \
466        "\n      -l,-s   Create (sym)links"
467
468 #define cpio_trivial_usage \
469        "-[dimtuv][F cpiofile]"
470 #define cpio_full_usage \
471        "Extract or list files from a cpio archive\n" \
472        "Main operation mode:\n" \
473        "        d       Make leading directories\n" \
474        "        i       Extract\n" \
475        "        m       Preserve mtime\n" \
476        "        t       List\n" \
477        "        v       Verbose\n" \
478        "        u       Unconditional overwrite\n" \
479        "        F       Input from file"
480
481 #define crond_trivial_usage \
482        "-d[#] -c crondir -f -b"
483 #define crond_full_usage \
484        "        -d [#] -l [#] -S -L logfile -f -b -c dir\n" \
485        "        -d num  Debug level\n" \
486        "        -l num  Log level (8 - default)\n" \
487        "        -S      Log to syslog (default)\n" \
488        "        -L file Log to file\n" \
489        "        -f      Run in foreground\n" \
490        "        -b      Run in background (default)\n" \
491        "        -c dir  Working dir"
492
493 #define crontab_trivial_usage \
494        "[-c dir] {file|-}|[-u|-l|-e|-d user]"
495 #define crontab_full_usage \
496        "        file [opts]     Replace crontab from file\n" \
497        "        - [opts]        Replace crontab from stdin\n" \
498        "        -u user         User\n" \
499        "        -l [user]       List crontab for user\n" \
500        "        -e [user]       Edit crontab for user\n" \
501        "        -d [user]       Delete crontab for user\n" \
502        "        -c dir          Crontab directory"
503
504 #define cryptpw_trivial_usage \
505        "[-a des|md5] [string]"
506 #define cryptpw_full_usage \
507        "Outputs crypted string.\n" \
508        "If string isn't supplied on cmdline, reads it from stdin.\n" \
509        "\nOptions:" \
510        "\n      -a      Algorithm to use (default: md5)"
511
512 #define cut_trivial_usage \
513        "[OPTION]... [FILE]..."
514 #define cut_full_usage \
515        "Print selected fields from each input FILE to standard output" \
516        "\n\nOptions:\n" \
517        "        -b LIST Output only bytes from LIST\n" \
518        "        -c LIST Output only characters from LIST\n" \
519        "        -d CHAR Use CHAR instead of tab as the field delimiter\n" \
520        "        -s      Output only the lines containing delimiter\n" \
521        "        -f N    Print only these fields\n" \
522        "        -n      Ignored"
523 #define cut_example_usage \
524        "$ echo \"Hello world\" | cut -f 1 -d ' '\n" \
525        "Hello\n" \
526        "$ echo \"Hello world\" | cut -f 2 -d ' '\n" \
527        "world\n"
528
529 #define date_trivial_usage \
530        "[OPTION]... [MMDDhhmm[[CC]YY][.ss]] [+FORMAT]"
531 #define date_full_usage \
532        "Display current time in the given FORMAT, or set system date" \
533        "\n\nOptions:\n" \
534        "        -R              Outputs RFC-822 compliant date string\n" \
535        "        -d STRING       Displays time described by STRING, not 'now'\n" \
536         USE_FEATURE_DATE_ISOFMT( \
537        "        -I[TIMESPEC]    Outputs an ISO-8601 compliant date/time string\n" \
538        "                        TIMESPEC='date' (or missing) for date only,\n" \
539        "                        'hours', 'minutes', or 'seconds' for date and\n" \
540        "                        time to the indicated precision\n" \
541        "        -D hint         Use 'hint' as date format, via strptime()\n" \
542         ) \
543        "        -s STRING       Sets time described by STRING\n" \
544        "        -r FILE         Displays the last modification time of FILE\n" \
545        "        -u              Prints or sets Coordinated Universal Time"
546 #define date_example_usage \
547        "$ date\n" \
548        "Wed Apr 12 18:52:41 MDT 2000\n"
549
550 #define dc_trivial_usage \
551        "expression ..."
552 #define dc_full_usage \
553        "This is a Tiny RPN calculator that understands the\n" \
554        "following operations: +, add, -, sub, *, mul, /, div, %, mod, " \
555        "**, exp, and, or, not, eor.\n" \
556        "For example: 'dc 2 2 add' -> 4, and 'dc 8 8 \\* 2 2 + /' -> 16." \
557        "\n\nOptions:\n" \
558        "p - Prints the value on the top of the stack, without altering the stack\n" \
559        "f - Prints the entire contents of the stack without altering anything\n" \
560        "o - Pops the value off the top of the stack and uses it to set the output radix\n" \
561        "    Only 10 and 16 are supported"
562 #define dc_example_usage \
563        "$ dc 2 2 + p\n" \
564        "4\n" \
565        "$ dc 8 8 \\* 2 2 + / p\n" \
566        "16\n" \
567        "$ dc 0 1 and p\n" \
568        "0\n" \
569        "$ dc 0 1 or p\n" \
570        "1\n" \
571        "$ echo 72 9 div 8 mul p | dc\n" \
572        "64\n"
573
574 #define dd_trivial_usage \
575        "[if=FILE] [of=FILE] " USE_FEATURE_DD_IBS_OBS("[ibs=N] [obs=N] ") "[bs=N] [count=N] [skip=N]\n" \
576        "        [seek=N]" USE_FEATURE_DD_IBS_OBS(" [conv=notrunc|noerror|sync]")
577 #define dd_full_usage \
578        "Copy a file with converting and formatting" \
579        "\n\nOptions:\n" \
580        "        if=FILE         Read from FILE instead of stdin\n" \
581        "        of=FILE         Write to FILE instead of stdout\n" \
582        "        bs=N            Read and write N bytes at a time\n" \
583         USE_FEATURE_DD_IBS_OBS( \
584        "        ibs=N           Read N bytes at a time\n") \
585         USE_FEATURE_DD_IBS_OBS( \
586        "        obs=N           Write N bytes at a time\n") \
587        "        count=N         Copy only N input blocks\n" \
588        "        skip=N          Skip N input blocks\n" \
589        "        seek=N          Skip N output blocks\n" \
590         USE_FEATURE_DD_IBS_OBS( \
591        "        conv=notrunc    Don't truncate output file\n" \
592        "        conv=noerror    Continue after read errors\n" \
593        "        conv=sync       Pad blocks with zeros\n") \
594        "\n" \
595        "Numbers may be suffixed by c (x1), w (x2), b (x512), kD (x1000), k (x1024),\n" \
596        "MD (x1000000), M (x1048576), GD (x1000000000) or G (x1073741824)"
597 #define dd_example_usage \
598        "$ dd if=/dev/zero of=/dev/ram1 bs=1M count=4\n" \
599        "4+0 records in\n" \
600        "4+0 records out\n"
601
602 #define deallocvt_trivial_usage \
603        "[N]"
604 #define deallocvt_full_usage \
605        "Deallocate unused virtual terminal /dev/ttyN"
606
607 #define delgroup_trivial_usage \
608         USE_FEATURE_DEL_USER_FROM_GROUP("[USER] ")"GROUP"
609 #define delgroup_full_usage \
610        "Delete group GROUP from the system" \
611         USE_FEATURE_DEL_USER_FROM_GROUP(" or user USER from group GROUP")
612
613 #define deluser_trivial_usage \
614        "USER"
615 #define deluser_full_usage \
616        "Delete user USER from the system"
617
618 #define devfsd_trivial_usage \
619        "mntpnt [-v]" \
620         USE_DEVFSD_FG_NP("[-fg][-np]" )
621 #define devfsd_full_usage \
622        "Manage devfs permissions and old device name symlinks" \
623        "\n\nOptions:" \
624        "\n      mntpnt  The mount point where devfs is mounted" \
625        "\n      -v      Print the protocol version numbers for devfsd" \
626        "\n              and the kernel-side protocol version and exit" \
627         USE_DEVFSD_FG_NP( \
628        "\n      -fg     Run in foreground" \
629        "\n      -np     Exit after parsing the configuration file" \
630        "\n              and processing synthetic REGISTER events," \
631        "\n              do not poll for events")
632
633 #define df_trivial_usage \
634        "[-" USE_FEATURE_HUMAN_READABLE("hm") "k] [FILESYSTEM ...]"
635 #define df_full_usage \
636        "Print the filesystem space used and space available" \
637         USE_FEATURE_HUMAN_READABLE( \
638        "\n\nOptions control size display:" \
639        "\n      -h      Human readable (e.g. 1K 243M 2G)" \
640        "\n      -m      1024*1024 blocks" \
641        "\n      -k      1024 blocks") \
642         SKIP_FEATURE_HUMAN_READABLE( \
643        "\n\nOptions:" \
644        "\n      -k      Ignored")
645 #define df_example_usage \
646        "$ df\n" \
647        "Filesystem           1k-blocks      Used Available Use% Mounted on\n" \
648        "/dev/sda3              8690864   8553540    137324  98% /\n" \
649        "/dev/sda1                64216     36364     27852  57% /boot\n" \
650        "$ df /dev/sda3\n" \
651        "Filesystem           1k-blocks      Used Available Use% Mounted on\n" \
652        "/dev/sda3              8690864   8553540    137324  98% /\n"
653
654 #define dhcprelay_trivial_usage \
655        "[client_device_list] [server_device]"
656 #define dhcprelay_full_usage \
657        "Relay dhcp requests from client devices to server device"
658
659 #define dhcprelay_trivial_usage \
660        "[client_device_list] [server_device]"
661 #define dhcprelay_full_usage \
662        "Relay dhcp requests from client devices to server device"
663
664 #define diff_trivial_usage \
665        "[-abdiNqrTstw] [-L LABEL] [-S FILE] [-U LINES] FILE1 FILE2"
666 #define diff_full_usage \
667        "Compare files line by line and output the differences between them.\n" \
668        "This diff implementation only supports unified diffs." \
669        "\n\nOptions:\n" \
670        "        -a      Treat all files as text\n" \
671        "        -b      Ignore changes in the amount of whitespace\n" \
672        "        -d      Try hard to find a smaller set of changes\n" \
673        "        -i      Ignore case differences\n" \
674        "        -L      Use LABEL instead of the filename in the unified header\n" \
675        "        -N      Treat absent files as empty\n" \
676        "        -q      Output only whether files differ\n" \
677        "        -r      Recursively compare subdirectories\n" \
678        "        -S      Start with FILE when comparing directories\n" \
679        "        -T      Make tabs line up by prefixing a tab when necessary\n" \
680        "        -s      Report when two files are the same\n" \
681        "        -t      Expand tabs to spaces in output\n" \
682        "        -U      Output LINES lines of context\n" \
683        "        -w      Ignore all whitespace"
684
685 #define dirname_trivial_usage \
686        "FILENAME"
687 #define dirname_full_usage \
688        "Strip non-directory suffix from FILENAME"
689 #define dirname_example_usage \
690        "$ dirname /tmp/foo\n" \
691        "/tmp\n" \
692        "$ dirname /tmp/foo/\n" \
693        "/tmp\n"
694
695 #define dmesg_trivial_usage \
696        "[-c] [-n LEVEL] [-s SIZE]"
697 #define dmesg_full_usage \
698        "Print or control the kernel ring buffer" \
699        "\n\nOptions:\n" \
700        "        -c              Clear ring buffer after printing\n" \
701        "        -n LEVEL        Set console logging level\n" \
702        "        -s SIZE         Buffer size"
703
704 #define dnsd_trivial_usage \
705        "[-c config] [-t seconds] [-p port] [-i iface-ip] [-d]"
706 #define dnsd_full_usage \
707        "Small and static DNS server daemon" \
708        "\n\nOptions:\n" \
709        "        -c      Config filename\n" \
710        "        -t      TTL in seconds\n" \
711        "        -p      Listening port\n" \
712        "        -i      Listening ip (default all)\n" \
713        "        -d      Daemonize"
714
715 #define dos2unix_trivial_usage \
716        "[option] [FILE]"
717 #define dos2unix_full_usage \
718        "Convert FILE from dos format to unix format. When no option\n" \
719        "is given, the input is converted to the opposite output format.\n" \
720        "When no file is given, use stdin for input and stdout for output." \
721        "\n\nOptions:\n" \
722        "        -u      Output will be in UNIX format\n" \
723        "        -d      Output will be in DOS format"
724
725 #define dpkg_trivial_usage \
726        "[-ilCPru] [-F option] package_name"
727 #define dpkg_full_usage \
728        "Install, remove and manage Debian packages" \
729        "\n\nOptions:\n" \
730        "        -i              Install the package\n" \
731        "        -l              List of installed packages\n" \
732        "        -C              Configure an unpackaged package\n" \
733        "        -F depends      Ignore dependency problems\n" \
734        "        -P              Purge all files of a package\n" \
735        "        -r              Remove all but the configuration files for a package\n" \
736        "        -u              Unpack a package, but don't configure it"
737
738 #define dpkg_deb_trivial_usage \
739        "[-cefxX] FILE [argument]"
740 #define dpkg_deb_full_usage \
741        "Perform actions on Debian packages (.debs)" \
742        "\n\nOptions:\n" \
743        "        -c      List contents of filesystem tree\n" \
744        "        -e      Extract control files to [argument] directory\n" \
745        "        -f      Display control field name starting with [argument]\n" \
746        "        -x      Extract packages filesystem tree to directory\n" \
747        "        -X      Verbose extract"
748 #define dpkg_deb_example_usage \
749        "$ dpkg-deb -X ./busybox_0.48-1_i386.deb /tmp\n"
750
751 #define du_trivial_usage \
752        "[-aHLdclsx" USE_FEATURE_HUMAN_READABLE("hm") "k] [FILE]..."
753 #define du_full_usage \
754        "Summarize disk space used for each FILE and/or directory.\n" \
755        "Disk space is printed in units of " \
756         USE_FEATURE_DU_DEFAULT_BLOCKSIZE_1K("1024") \
757         SKIP_FEATURE_DU_DEFAULT_BLOCKSIZE_1K("512") \
758        " bytes." \
759        "\n\nOptions:\n" \
760        "        -a      Show sizes of files in addition to directories\n" \
761        "        -H      Follow symlinks that are FILE command line args\n" \
762        "        -L      Follow all symlinks encountered\n" \
763        "        -d N    Limit output to directories (and files with -a) of depth < N\n" \
764        "        -c      Output a grand total\n" \
765        "        -l      Count sizes many times if hard linked\n" \
766        "        -s      Display only a total for each argument\n" \
767        "        -x      Skip directories on different filesystems\n" \
768         USE_FEATURE_HUMAN_READABLE( \
769        "        -h      Print sizes in human readable format (e.g., 1K 243M 2G )\n" \
770        "        -m      Print sizes in megabytes\n" \
771         ) \
772        "        -k      Print sizes in kilobytes" \
773         USE_FEATURE_DU_DEFAULT_BLOCKSIZE_1K("(default)")
774 #define du_example_usage \
775        "$ du\n" \
776        "16      ./CVS\n" \
777        "12      ./kernel-patches/CVS\n" \
778        "80      ./kernel-patches\n" \
779        "12      ./tests/CVS\n" \
780        "36      ./tests\n" \
781        "12      ./scripts/CVS\n" \
782        "16      ./scripts\n" \
783        "12      ./docs/CVS\n" \
784        "104     ./docs\n" \
785        "2417    .\n"
786
787 #define dumpkmap_trivial_usage \
788        "> keymap"
789 #define dumpkmap_full_usage \
790        "Print out a binary keyboard translation table to standard output"
791 #define dumpkmap_example_usage \
792        "$ dumpkmap > keymap\n"
793
794 #define dumpleases_trivial_usage \
795        "[-r|-a] [-f LEASEFILE]"
796 #define dumpleases_full_usage \
797        "Display DHCP leases granted by udhcpd" \
798        "\n\nOptions:\n" \
799         USE_GETOPT_LONG( \
800        "        -f,--file=FILE  Leases file to load\n" \
801        "        -r,--remaining  Interpret lease times as time remaining\n" \
802        "        -a,--absolute   Interpret lease times as expire time" \
803         ) \
804         SKIP_GETOPT_LONG( \
805        "        -f FILE Leases file to load\n" \
806        "        -r      Interpret lease times as time remaining\n" \
807        "        -a      Interpret lease times as expire time" \
808         )
809
810 #define e2fsck_trivial_usage \
811        "[-panyrcdfvstDFSV] [-b superblock] [-B blocksize] " \
812        "[-I inode_buffer_blocks] [-P process_inode_size] " \
813        "[-l|-L bad_blocks_file] [-C fd] [-j external_journal] " \
814        "[-E extended-options] device"
815 #define e2fsck_full_usage \
816        "Check ext2/ext3 file system" \
817        "\n\nOptions:\n" \
818        "        -p              Automatic repair (no questions)\n" \
819        "        -n              Make no changes to the filesystem\n" \
820        "        -y              Assume 'yes' to all questions\n" \
821        "        -c              Check for bad blocks and add them to the badblock list\n" \
822        "        -f              Force checking even if filesystem is marked clean\n" \
823        "        -v              Verbose\n" \
824        "        -b superblock   Use alternative superblock\n" \
825        "        -B blocksize    Force blocksize when looking for superblock\n" \
826        "        -j journal      Set location of the external journal\n" \
827        "        -l file         Add to badblocks list\n" \
828        "        -L file         Set badblocks list"
829
830 #define echo_trivial_usage \
831         USE_FEATURE_FANCY_ECHO("[-neE] ") "[ARG ...]"
832 #define echo_full_usage \
833        "Print the specified ARGs to stdout" \
834         USE_FEATURE_FANCY_ECHO( \
835        "\n\nOptions:\n" \
836        "        -n      Suppress trailing newline\n" \
837        "        -e      Interpret backslash-escaped characters (i.e., \\t=tab)\n" \
838        "        -E      Disable interpretation of backslash-escaped characters" \
839         )
840 #define echo_example_usage \
841        "$ echo \"Erik is cool\"\n" \
842        "Erik is cool\n" \
843         USE_FEATURE_FANCY_ECHO("$ echo -e \"Erik\\nis\\ncool\"\n" \
844        "Erik\n" \
845        "is\n" \
846        "cool\n" \
847        "$ echo \"Erik\\nis\\ncool\"\n" \
848        "Erik\\nis\\ncool\n")
849
850 #define eject_trivial_usage \
851        "[-t] [-T] [DEVICE]"
852 #define eject_full_usage \
853        "Eject specified DEVICE (or default /dev/cdrom)" \
854        "\n\nOptions:\n" \
855        "        -t      Close tray\n" \
856        "        -T      Open/close tray (toggle)"
857
858 #define ed_trivial_usage ""
859 #define ed_full_usage ""
860
861 #define env_trivial_usage \
862        "[-iu] [-] [name=value]... [command]"
863 #define env_full_usage \
864        "Print the current environment or run a program after setting\n" \
865        "up the specified environment" \
866        "\n\nOptions:\n" \
867        "        -, -i   Start with an empty environment\n" \
868        "        -u      Remove variable from the environment"
869
870 #define ether_wake_trivial_usage \
871        "[-b] [-i iface] [-p aa:bb:cc:dd[:ee:ff]] MAC"
872 #define ether_wake_full_usage \
873        "Send a magic packet to wake up sleeping machines.\n" \
874        "MAC must be a station address (00:11:22:33:44:55) or\n" \
875        "a hostname with a known 'ethers' entry." \
876        "\n\nOptions:\n" \
877        "        -b              Send wake-up packet to the broadcast address\n" \
878        "        -i iface        Use interface ifname instead of the default \"eth0\"\n" \
879        "        -p pass         Append the four or six byte password PW to the packet"
880
881 #define expand_trivial_usage \
882        "[-i] [-t NUM] [FILE|-]"
883 #define expand_full_usage \
884        "Convert tabs to spaces, writing to standard output." \
885        "\n\nOptions:" \
886        "\n      -i" USE_FEATURE_EXPAND_LONG_OPTIONS(",--initial") \
887        "        Do not convert tabs after non blanks" \
888        "\n      -t" USE_FEATURE_EXPAND_LONG_OPTIONS(",--tabs=N") \
889        "        Tabstops every N chars"
890
891 #define expr_trivial_usage \
892        "EXPRESSION"
893 #define expr_full_usage \
894        "Print the value of EXPRESSION to standard output.\n\n" \
895        "EXPRESSION may be:\n" \
896        "        ARG1 | ARG2     ARG1 if it is neither null nor 0, otherwise ARG2\n" \
897        "        ARG1 & ARG2     ARG1 if neither argument is null or 0, otherwise 0\n" \
898        "        ARG1 < ARG2     1 if ARG1 is less than ARG2, else 0. Similarly:\n" \
899        "        ARG1 <= ARG2\n" \
900        "        ARG1 = ARG2\n" \
901        "        ARG1 != ARG2\n" \
902        "        ARG1 >= ARG2\n" \
903        "        ARG1 > ARG2\n" \
904        "        ARG1 + ARG2     Sum of ARG1 and ARG2. Similarly:\n" \
905        "        ARG1 - ARG2\n" \
906        "        ARG1 * ARG2\n" \
907        "        ARG1 / ARG2\n" \
908        "        ARG1 % ARG2\n" \
909        "        STRING : REGEXP         Anchored pattern match of REGEXP in STRING\n" \
910        "        match STRING REGEXP     Same as STRING : REGEXP\n" \
911        "        substr STRING POS LENGTH Substring of STRING, POS counted from 1\n" \
912        "        index STRING CHARS      Index in STRING where any CHARS is found, or 0\n" \
913        "        length STRING           Length of STRING\n" \
914        "        quote TOKEN             Interpret TOKEN as a string, even if\n" \
915        "                                it is a keyword like 'match' or an\n" \
916        "                                operator like '/'\n" \
917        "        (EXPRESSION)            Value of EXPRESSION\n\n" \
918        "Beware that many operators need to be escaped or quoted for shells.\n" \
919        "Comparisons are arithmetic if both ARGs are numbers, else\n" \
920        "lexicographical. Pattern matches return the string matched between\n" \
921        "\\( and \\) or null; if \\( and \\) are not used, they return the number\n" \
922        "of characters matched or 0."
923
924 #define fakeidentd_trivial_usage \
925        "[-fiw] [-b ADDR] [STRING]"
926 #define fakeidentd_full_usage \
927        "Provide fake ident (auth) service" \
928        "\n\nOptions:" \
929        "\n      -f      Run in foreground" \
930        "\n      -i      Inetd mode" \
931        "\n      -w      Inetd 'wait' mode" \
932        "\n      -b ADDR Bind to specified address" \
933        "\n      STRING  Ident answer string (default is 'nobody')"
934
935 #define false_trivial_usage \
936        ""
937 #define false_full_usage \
938        "Return an exit code of FALSE (1)"
939 #define false_example_usage \
940        "$ false\n" \
941        "$ echo $?\n" \
942        "1\n"
943
944 #define fbset_trivial_usage \
945        "[options] [mode]"
946 #define fbset_full_usage \
947        "Show and modify frame buffer settings"
948 #define fbset_example_usage \
949        "$ fbset\n" \
950        "mode \"1024x768-76\"\n" \
951        "        # D: 78.653 MHz, H: 59.949 kHz, V: 75.694 Hz\n" \
952        "        geometry 1024 768 1024 768 16\n" \
953        "        timings 12714 128 32 16 4 128 4\n" \
954        "        accel false\n" \
955        "        rgba 5/11,6/5,5/0,0/0\n" \
956        "endmode\n"
957
958 #define fdflush_trivial_usage \
959        "DEVICE"
960 #define fdflush_full_usage \
961        "Force floppy disk drive to detect disk change"
962
963 #define fdformat_trivial_usage \
964        "[-n] DEVICE"
965 #define fdformat_full_usage \
966        "Format floppy disk" \
967        "\n\nOptions:\n" \
968        "        -n      Don't verify after format"
969
970 #define fdisk_trivial_usage \
971        "[-luv] [-C CYLINDERS] [-H HEADS] [-S SECTORS] [-b SSZ] DISK"
972 #define fdisk_full_usage \
973        "Change partition table" \
974        "\n\nOptions:\n" \
975        "        -l              List partition table(s)\n" \
976        "        -u              Give Start and End in sector (instead of cylinder) units\n" \
977        "        -s PARTITION    Give partition size(s) in blocks\n" \
978        "        -b 2048         (for certain MO disks) use 2048-byte sectors\n" \
979        "        -C CYLINDERS    Set the number of cylinders\n" \
980        "        -H HEADS        Set the number of heads\n" \
981        "        -S SECTORS      Set the number of sectors\n" \
982        "        -v              Give fdisk version"
983
984 #define find_trivial_usage \
985        "[PATH...] [EXPRESSION]"
986 #define find_full_usage \
987        "Search for files in a directory hierarchy. The default PATH is\n" \
988        "the current directory, default EXPRESSION is '-print'\n" \
989      "\nEXPRESSION may consist of:" \
990      "\n        -follow         Dereference symlinks" \
991         USE_FEATURE_FIND_XDEV( \
992      "\n        -xdev           Don't descend directories on other filesystems") \
993         USE_FEATURE_FIND_MAXDEPTH( \
994      "\n        -maxdepth N     Descend at most N levels. -maxdepth 0 applies" \
995      "\n                        tests/actions to command line arguments only") \
996      "\n        -name PATTERN   File name (w/o directory name) matches PATTERN" \
997         USE_FEATURE_FIND_PATH( \
998      "\n        -path PATTERN   Path matches PATTERN") \
999         USE_FEATURE_FIND_REGEX( \
1000      "\n        -regex PATTERN  Path matches regex PATTERN") \
1001         USE_FEATURE_FIND_TYPE( \
1002      "\n        -type X         File type is X (X is one of: f,d,l,b,c,...)") \
1003         USE_FEATURE_FIND_PERM( \
1004      "\n        -perm NNN       Permissions match any of (+NNN), all of (-NNN)," \
1005      "\n                        or exactly (NNN)") \
1006         USE_FEATURE_FIND_MTIME( \
1007      "\n        -mtime DAYS     Modified time is greater than (+N), less than (-N)," \
1008      "\n                        or exactly (N) days") \
1009         USE_FEATURE_FIND_MMIN( \
1010      "\n        -mmin MINS      Modified time is greater than (+N), less than (-N)," \
1011      "\n                        or exactly (N) minutes") \
1012         USE_FEATURE_FIND_NEWER( \
1013      "\n        -newer FILE     Modified time is more recent than FILE's") \
1014         USE_FEATURE_FIND_INUM( \
1015      "\n        -inum N         File has inode number N") \
1016         USE_FEATURE_FIND_USER( \
1017      "\n        -user NAME      File is owned by user NAME (numeric user ID allowed)") \
1018         USE_FEATURE_FIND_GROUP( \
1019      "\n        -group NAME     File belongs to group NAME (numeric group ID allowed)") \
1020         USE_FEATURE_FIND_DEPTH( \
1021      "\n        -depth          Process directory name after traversing it") \
1022         USE_FEATURE_FIND_SIZE( \
1023      "\n        -size N[bck]    File size is N (c:bytes,k:kbytes,b:512 bytes(def.))." \
1024      "\n                        +/-N: file size is bigger/smaller than N") \
1025      "\n        -print          Print (default and assumed)" \
1026         USE_FEATURE_FIND_PRINT0( \
1027      "\n        -print0         Delimit output with null characters rather than" \
1028      "\n                        newlines") \
1029         USE_FEATURE_FIND_CONTEXT ( \
1030      "\n        -context        File has specified security context") \
1031         USE_FEATURE_FIND_EXEC( \
1032      "\n        -exec CMD ARG ; Execute CMD with all instances of {} replaced by the" \
1033      "\n                        matching files") \
1034         USE_FEATURE_FIND_PRUNE( \
1035      "\n        -prune          Stop traversing current subtree") \
1036         USE_FEATURE_FIND_DELETE( \
1037      "\n        -delete         Delete files, turns on -depth option") \
1038         USE_FEATURE_FIND_PAREN( \
1039      "\n        (EXPR)          Group an expression") \
1040
1041 #define find_example_usage \
1042        "$ find / -name passwd\n" \
1043        "/etc/passwd\n"
1044
1045 #define fold_trivial_usage \
1046        "[-bs] [-w WIDTH] [FILE]"
1047 #define fold_full_usage \
1048        "Wrap input lines in each FILE (standard input by default), writing to\n" \
1049        "standard output" \
1050        "\n\nOptions:\n" \
1051        "        -b      Count bytes rather than columns\n" \
1052        "        -s      Break at spaces\n" \
1053        "        -w      Use WIDTH columns instead of 80"
1054
1055 #define free_trivial_usage \
1056        ""
1057 #define free_full_usage \
1058        "Display the amount of free and used system memory"
1059 #define free_example_usage \
1060        "$ free\n" \
1061        "              total         used         free       shared      buffers\n" \
1062        "  Mem:       257628       248724         8904        59644        93124\n" \
1063        " Swap:       128516         8404       120112\n" \
1064        "Total:       386144       257128       129016\n" \
1065
1066 #define freeramdisk_trivial_usage \
1067        "DEVICE"
1068 #define freeramdisk_full_usage \
1069        "Free all memory used by the specified ramdisk"
1070 #define freeramdisk_example_usage \
1071        "$ freeramdisk /dev/ram2\n"
1072
1073 #define fsck_trivial_usage \
1074        "[-ANPRTV] [-C fd] [-t fstype] [fs-options] [filesys ...]"
1075 #define fsck_full_usage \
1076        "Check and repair filesystems" \
1077        "\n\nOptions:\n" \
1078        "        -A      Walk /etc/fstab and check all filesystems\n" \
1079        "        -N      Don't execute, just show what would be done\n" \
1080        "        -P      When using -A, check filesystems in parallel\n" \
1081        "        -R      When using -A, skip the root filesystem\n" \
1082        "        -T      Don't show title on startup\n" \
1083        "        -V      Verbose\n" \
1084        "        -C n    Write status information to specified filedescriptor\n" \
1085        "        -t type List of filesystem types to check"
1086
1087 #define fsck_minix_trivial_usage \
1088        "[-larvsmf] /dev/name"
1089 #define fsck_minix_full_usage \
1090        "Perform a consistency check for MINIX filesystems" \
1091        "\n\nOptions:\n" \
1092        "        -l      List all filenames\n" \
1093        "        -r      Perform interactive repairs\n" \
1094        "        -a      Perform automatic repairs\n" \
1095        "        -v      Verbose\n" \
1096        "        -s      Output super-block information\n" \
1097        "        -m      Activate MINIX-like \"mode not cleared\" warnings\n" \
1098        "        -f      Force file system check"
1099
1100 #define ftpget_trivial_usage \
1101        "[options] remote-host local-file remote-file"
1102 #define ftpget_full_usage \
1103        "Retrieve a remote file via FTP" \
1104        "\n\nOptions:\n" \
1105         USE_GETOPT_LONG( \
1106        "        -c,--continue   Continue previous transfer\n" \
1107        "        -v,--verbose    Verbose\n" \
1108        "        -u,--username   Username\n" \
1109        "        -p,--password   Password\n" \
1110        "        -P,--port       Port number" \
1111         ) \
1112         SKIP_GETOPT_LONG( \
1113        "        -c      Continue previous transfer\n" \
1114        "        -v      Verbose\n" \
1115        "        -u      Username\n" \
1116        "        -p      Password\n" \
1117        "        -P      Port number" \
1118         )
1119
1120 #define ftpput_trivial_usage \
1121        "[options] remote-host remote-file local-file"
1122 #define ftpput_full_usage \
1123        "Store a local file on a remote machine via FTP" \
1124        "\n\nOptions:\n" \
1125         USE_GETOPT_LONG( \
1126        "        -v,--verbose    Verbose\n" \
1127        "        -u,--username   Username\n" \
1128        "        -p,--password   Password\n" \
1129        "        -P,--port       Port number" \
1130         ) \
1131         SKIP_GETOPT_LONG( \
1132        "        -v      Verbose\n" \
1133        "        -u      Username\n" \
1134        "        -p      Password\n" \
1135        "        -P      Port number" \
1136         )
1137
1138 #define fuser_trivial_usage \
1139        "[options] file OR port/proto"
1140 #define fuser_full_usage \
1141        "Options:\n" \
1142        "        -m      Show all processes on the same mounted fs\n" \
1143        "        -k      Kill all processes that match\n" \
1144        "        -s      Don't print or kill anything\n" \
1145        "        -4      When using port/proto only search IPv4 space\n" \
1146        "        -6      When using port/proto only search IPv6 space\n" \
1147        "        -SIGNAL When used with -k, this signal will be used to kill"
1148
1149 #define getenforce_trivial_usage
1150 #define getenforce_full_usage
1151
1152 #define getopt_trivial_usage \
1153        "[OPTIONS]..."
1154 #define getopt_full_usage \
1155        "Parse command options\n" \
1156         USE_GETOPT_LONG( \
1157        "        -a,--alternative                Allow long options starting with single -\n" \
1158        "        -l,--longoptions=longopts       Long options to be recognized\n" \
1159        "        -n,--name=progname              The name under which errors are reported\n" \
1160        "        -o,--options=optstring          Short options to be recognized\n" \
1161        "        -q,--quiet                      Disable error reporting by getopt(3)\n" \
1162        "        -Q,--quiet-output               No normal output\n" \
1163        "        -s,--shell=shell                Set shell quoting conventions\n" \
1164        "        -T,--test                       Test for getopt(1) version\n" \
1165        "        -u,--unquoted                   Don't quote the output" \
1166         ) \
1167         SKIP_GETOPT_LONG( \
1168        "        -a              Allow long options starting with single -\n" \
1169        "        -l longopts     Long options to be recognized\n" \
1170        "        -n progname     The name under which errors are reported\n" \
1171        "        -o optstring    Short options to be recognized\n" \
1172        "        -q              Disable error reporting by getopt(3)\n" \
1173        "        -Q              No normal output\n" \
1174        "        -s shell        Set shell quoting conventions\n" \
1175        "        -T              Test for getopt(1) version\n" \
1176        "        -u              Don't quote the output" \
1177         )
1178 #define getopt_example_usage \
1179        "$ cat getopt.test\n" \
1180        "#!/bin/sh\n" \
1181        "GETOPT=`getopt -o ab:c:: --long a-long,b-long:,c-long:: \\\n" \
1182        "       -n 'example.busybox' -- \"$@\"`\n" \
1183        "if [ $? != 0 ]; then  exit 1; fi\n" \
1184        "eval set -- \"$GETOPT\"\n" \
1185        "while true; do\n" \
1186        " case $1 in\n" \
1187        "   -a|--a-long) echo \"Option a\"; shift;;\n" \
1188        "   -b|--b-long) echo \"Option b, argument '$2'\"; shift 2;;\n" \
1189        "   -c|--c-long)\n" \
1190        "     case \"$2\" in\n" \
1191        "       \"\") echo \"Option c, no argument\"; shift 2;;\n" \
1192        "       *)  echo \"Option c, argument '$2'\"; shift 2;;\n" \
1193        "     esac;;\n" \
1194        "   --) shift; break;;\n" \
1195        "   *) echo \"Internal error!\"; exit 1;;\n" \
1196        " esac\n" \
1197        "done\n"
1198
1199 #define getsebool_trivial_usage \
1200        "-a or getsebool boolean..."
1201 #define getsebool_full_usage \
1202        "        -a      Show all SELinux booleans"
1203
1204 #define getty_trivial_usage \
1205        "[OPTIONS]... baud_rate,... line [termtype]"
1206 #define getty_full_usage \
1207        "Open a tty, prompt for a login name, then invoke /bin/login" \
1208        "\n\nOptions:\n" \
1209        "        -h              Enable hardware (RTS/CTS) flow control\n" \
1210        "        -i              Do not display /etc/issue before running login\n" \
1211        "        -L              Local line, so do not do carrier detect\n" \
1212        "        -m              Get baud rate from modem's CONNECT status message\n" \
1213        "        -w              Wait for a CR or LF before sending /etc/issue\n" \
1214        "        -n              Do not prompt the user for a login name\n" \
1215        "        -f issue_file   Display issue_file instead of /etc/issue\n" \
1216        "        -l login_app    Invoke login_app instead of /bin/login\n" \
1217        "        -t timeout      Terminate after timeout if no username is read\n" \
1218        "        -I initstring   Sets the init string to send before anything else\n" \
1219        "        -H login_host   Log login_host into the utmp file as the hostname"
1220
1221 #define grep_trivial_usage \
1222        "[-HhrilLnqvso" \
1223         USE_DESKTOP("w") \
1224        "eF" \
1225         USE_FEATURE_GREP_EGREP_ALIAS("E") \
1226         USE_FEATURE_GREP_CONTEXT("ABC") \
1227        "] PATTERN [FILEs...]"
1228 #define grep_full_usage \
1229        "Search for PATTERN in each FILE or standard input" \
1230        "\n\nOptions:" \
1231        "\n      -H      Prefix output lines with filename where match was found" \
1232        "\n      -h      Suppress the prefixing filename on output" \
1233        "\n      -r      Recurse subdirectories" \
1234        "\n      -i      Ignore case distinctions" \
1235        "\n      -l      List names of files that match" \
1236        "\n      -L      List names of files that do not match" \
1237        "\n      -n      Print line number with output lines" \
1238        "\n      -q      Quiet. Returns 0 if PATTERN was found, 1 otherwise" \
1239        "\n      -v      Select non-matching lines" \
1240        "\n      -s      Suppress file open/read error messages" \
1241        "\n      -c      Only print count of matching lines" \
1242        "\n      -o      Show only the part of a line that matches PATTERN" \
1243        "\n      -m MAX  Match up to MAX times per file" \
1244         USE_DESKTOP( \
1245        "\n      -w      Match whole words only") \
1246        "\n      -F      PATTERN is a set of newline-separated strings" \
1247         USE_FEATURE_GREP_EGREP_ALIAS( \
1248        "\n      -E      PATTERN is an extended regular expression") \
1249        "\n      -e PTRN Pattern to match" \
1250        "\n      -f FILE Read pattern from file" \
1251         USE_FEATURE_GREP_CONTEXT( \
1252        "\n      -A      Print NUM lines of trailing context" \
1253        "\n      -B      Print NUM lines of leading context" \
1254        "\n      -C      Print NUM lines of output context") \
1255
1256 #define grep_example_usage \
1257        "$ grep root /etc/passwd\n" \
1258        "root:x:0:0:root:/root:/bin/bash\n" \
1259        "$ grep ^[rR]oo. /etc/passwd\n" \
1260        "root:x:0:0:root:/root:/bin/bash\n"
1261
1262 #define gunzip_trivial_usage \
1263        "[OPTION]... FILE"
1264 #define gunzip_full_usage \
1265        "Uncompress FILE (or standard input if FILE is '-')" \
1266        "\n\nOptions:\n" \
1267        "        -c      Write output to standard output\n" \
1268        "        -f      Force\n" \
1269        "        -t      Test compressed file integrity"
1270 #define gunzip_example_usage \
1271        "$ ls -la /tmp/BusyBox*\n" \
1272        "-rw-rw-r--    1 andersen andersen   557009 Apr 11 10:55 /tmp/BusyBox-0.43.tar.gz\n" \
1273        "$ gunzip /tmp/BusyBox-0.43.tar.gz\n" \
1274        "$ ls -la /tmp/BusyBox*\n" \
1275        "-rw-rw-r--    1 andersen andersen  1761280 Apr 14 17:47 /tmp/BusyBox-0.43.tar\n"
1276
1277 #define gzip_trivial_usage \
1278        "[OPTION]... [FILE]..."
1279 #define gzip_full_usage \
1280        "Compress FILE(s) with maximum compression.\n" \
1281        "When FILE is '-' or unspecified, reads standard input. Implies -c." \
1282        "\n\nOptions:\n" \
1283        "        -c      Write output to standard output instead of FILE.gz\n" \
1284        "        -d      Decompress\n" \
1285        "        -f      Force"
1286 #define gzip_example_usage \
1287        "$ ls -la /tmp/busybox*\n" \
1288        "-rw-rw-r--    1 andersen andersen  1761280 Apr 14 17:47 /tmp/busybox.tar\n" \
1289        "$ gzip /tmp/busybox.tar\n" \
1290        "$ ls -la /tmp/busybox*\n" \
1291        "-rw-rw-r--    1 andersen andersen   554058 Apr 14 17:49 /tmp/busybox.tar.gz\n"
1292
1293 #define halt_trivial_usage \
1294        "[-d delay] [-n] [-f]"
1295 #define halt_full_usage \
1296        "Halt the system" \
1297        "\n\nOptions:\n" \
1298        "        -d      Delay interval for halting\n" \
1299        "        -n      No call to sync()\n" \
1300        "        -f      Force halt (don't go through init)"
1301
1302 #define hdparm_trivial_usage \
1303        "[options] [device] .."
1304 #define hdparm_full_usage \
1305         USE_FEATURE_HDPARM_GET_IDENTITY( \
1306        "If no device name is specified try to read from stdin.\n\n") \
1307        "Options:\n" \
1308        "        -a      Get/set fs readahead\n" \
1309        "        -A      Set drive read-lookahead flag (0/1)\n" \
1310        "        -b      Get/set bus state (0 == off, 1 == on, 2 == tristate)\n" \
1311        "        -B      Set Advanced Power Management setting (1-255)\n" \
1312        "        -c      Get/set IDE 32-bit IO setting\n" \
1313        "        -C      Check IDE power mode status\n" \
1314         USE_FEATURE_HDPARM_HDIO_GETSET_DMA( \
1315        "        -d      Get/set using_dma flag\n") \
1316        "        -D      Enable/disable drive defect-mgmt\n" \
1317        "        -f      Flush buffer cache for device on exit\n" \
1318        "        -g      Display drive geometry\n" \
1319        "        -h      Display terse usage information\n" \
1320         USE_FEATURE_HDPARM_GET_IDENTITY( \
1321        "        -i      Display drive identification\n") \
1322         USE_FEATURE_HDPARM_GET_IDENTITY( \
1323        "        -I      Detailed/current information directly from drive\n") \
1324        "        -k      Get/set keep_settings_over_reset flag (0/1)\n" \
1325        "        -K      Set drive keep_features_over_reset flag (0/1)\n" \
1326        "        -L      Set drive doorlock (0/1) (removable harddisks only)\n" \
1327        "        -m      Get/set multiple sector count\n" \
1328        "        -n      Get/set ignore-write-errors flag (0/1)\n" \
1329        "        -p      Set PIO mode on IDE interface chipset (0,1,2,3,4,...)\n" \
1330        "        -P      Set drive prefetch count\n" \
1331        "        -q      Change next setting quietly\n" \
1332        "        -Q      Get/set DMA tagged-queuing depth (if supported)\n" \
1333        "        -r      Get/set readonly flag (DANGEROUS to set)\n" \
1334         USE_FEATURE_HDPARM_HDIO_SCAN_HWIF( \
1335        "        -R      Register an IDE interface (DANGEROUS)\n") \
1336        "        -S      Set standby (spindown) timeout\n" \
1337        "        -t      Perform device read timings\n" \
1338        "        -T      Perform cache read timings\n" \
1339        "        -u      Get/set unmaskirq flag (0/1)\n" \
1340         USE_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF( \
1341        "        -U      Un-register an IDE interface (DANGEROUS)\n") \
1342        "        -v      Defaults; same as -mcudkrag for IDE drives\n" \
1343        "        -V      Display program version and exit immediately\n" \
1344         USE_FEATURE_HDPARM_HDIO_DRIVE_RESET( \
1345        "        -w      Perform device reset (DANGEROUS)\n") \
1346        "        -W      Set drive write-caching flag (0/1) (DANGEROUS)\n" \
1347         USE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF( \
1348        "        -x      Tristate device for hotswap (0/1) (DANGEROUS)\n") \
1349        "        -X      Set IDE xfer mode (DANGEROUS)\n" \
1350        "        -y      Put IDE drive in standby mode\n" \
1351        "        -Y      Put IDE drive to sleep\n" \
1352        "        -Z      Disable Seagate auto-powersaving mode\n" \
1353        "        -z      Re-read partition table"
1354
1355 #define head_trivial_usage \
1356        "[OPTION]... [FILE]..."
1357 #define head_full_usage \
1358        "Print first 10 lines of each FILE to standard output.\n" \
1359        "With more than one FILE, precede each with a header giving the\n" \
1360        "file name. With no FILE, or when FILE is -, read standard input." \
1361        "\n\nOptions:" \
1362        "\n      -n NUM  Print first NUM lines instead of first 10" \
1363         USE_FEATURE_FANCY_HEAD( \
1364        "\n      -c NUM  Output the first NUM bytes" \
1365        "\n      -q      Never output headers giving file names" \
1366        "\n      -v      Always output headers giving file names")
1367 #define head_example_usage \
1368        "$ head -n 2 /etc/passwd\n" \
1369        "root:x:0:0:root:/root:/bin/bash\n" \
1370        "daemon:x:1:1:daemon:/usr/sbin:/bin/sh\n"
1371
1372 #define hexdump_trivial_usage \
1373        "[-[bcCdefnosvx]] [OPTION] FILE"
1374 #define hexdump_full_usage \
1375        "Display file(s) or standard input in a user specified format" \
1376        "\n\nOptions:\n" \
1377        "        -b              One-byte octal display\n" \
1378        "        -c              One-byte character display\n" \
1379        "        -C              Canonical hex+ASCII, 16 bytes per line\n" \
1380        "        -d              Two-byte decimal display\n" \
1381        "        -e FORMAT STRING\n" \
1382        "        -f FORMAT FILE\n" \
1383        "        -n LENGTH       Interpret only length bytes of input\n" \
1384        "        -o              Two-byte octal display\n" \
1385        "        -s OFFSET       Skip offset bytes\n" \
1386        "        -v              Display all input data\n" \
1387        "        -x              Two-byte hexadecimal display"
1388
1389 #define hostid_trivial_usage \
1390        ""
1391 #define hostid_full_usage \
1392        "Print out a unique 32-bit identifier for the machine"
1393
1394 #define hostname_trivial_usage \
1395        "[OPTION] {hostname | -F FILE}"
1396 #define hostname_full_usage \
1397        "Get or set the hostname or DNS domain name. If a hostname is given\n" \
1398        "(or FILE with the -F parameter), the host name will be set." \
1399        "\n\nOptions:\n" \
1400        "        -s      Short\n" \
1401        "        -i      Addresses for the hostname\n" \
1402        "        -d      DNS domain name\n" \
1403        "        -f      Fully qualified domain name\n" \
1404        "        -F FILE Use the contents of FILE to specify the hostname"
1405 #define hostname_example_usage \
1406        "$ hostname\n" \
1407        "sage\n"
1408
1409 #define httpd_trivial_usage \
1410        "[-c conffile]" \
1411        " [-p [ip:]port]" \
1412        " [-i] [-f] [-v[v]]" \
1413         USE_FEATURE_HTTPD_SETUID(" [-u user[:grp]]") \
1414         USE_FEATURE_HTTPD_BASIC_AUTH(" [-r realm]") \
1415         USE_FEATURE_HTTPD_AUTH_MD5(" [-m pass]") \
1416        " [-h home]" \
1417        " [-d/-e string]"
1418 #define httpd_full_usage \
1419        "Listen for incoming HTTP requests" \
1420        "\n\nOptions:" \
1421        "\n      -c FILE         Configuration file (default httpd.conf)" \
1422        "\n      -p [IP:]PORT    Bind to ip:port (default *:80)" \
1423        "\n      -i              Inetd mode" \
1424        "\n      -f              Do not daemonize" \
1425        "\n      -v[v]           Verbose" \
1426         USE_FEATURE_HTTPD_SETUID( \
1427        "\n      -u USER[:GRP]   Set uid/gid after binding to port") \
1428         USE_FEATURE_HTTPD_BASIC_AUTH( \
1429        "\n      -r REALM        Authentication Realm for Basic Authentication") \
1430         USE_FEATURE_HTTPD_AUTH_MD5( \
1431        "\n      -m PASS         Crypt PASS with md5 algorithm") \
1432        "\n      -h HOME         Home directory (default .)" \
1433        "\n      -e STRING       HTML encode STRING" \
1434        "\n      -d STRING       URL decode STRING" \
1435
1436 #define hwclock_trivial_usage \
1437        "[-r|--show] [-s|--hctosys] [-w|--systohc]" \
1438        " [-l|--localtime] [-u|--utc]" \
1439        " [-f FILE]"
1440 #define hwclock_full_usage \
1441        "Query and set a hardware clock (RTC)" \
1442        "\n\nOptions:\n" \
1443        "        -r      Read hardware clock and print result\n" \
1444        "        -s      Set the system time from the hardware clock\n" \
1445        "        -w      Set the hardware clock to the current system time\n" \
1446        "        -u      The hardware clock is kept in coordinated universal time\n" \
1447        "        -l      The hardware clock is kept in local time\n" \
1448        "        -f FILE Use the specified clock (e.g. /dev/rtc2)"
1449
1450 #define id_trivial_usage \
1451        "[OPTIONS]... [USERNAME]"
1452 #define id_full_usage \
1453        "Print information for USERNAME or the current user" \
1454        "\n\nOptions:\n" \
1455         USE_SELINUX( \
1456        "        -Z      prints only the security context\n" \
1457         ) \
1458        "        -g      Prints only the group ID\n" \
1459        "        -u      Prints only the user ID\n" \
1460        "        -n      Print a name instead of a number\n" \
1461        "        -r      Prints the real user ID instead of the effective ID"
1462 #define id_example_usage \
1463        "$ id\n" \
1464        "uid=1000(andersen) gid=1000(andersen)\n"
1465
1466 #define ifconfig_trivial_usage \
1467         USE_FEATURE_IFCONFIG_STATUS("[-a]") " interface [address]"
1468 #define ifconfig_full_usage \
1469        "Configure a network interface" \
1470        "\n\nOptions:\n" \
1471         USE_FEATURE_IPV6( \
1472        "        [add ADDRESS[/PREFIXLEN]]\n") \
1473         USE_FEATURE_IPV6( \
1474        "        [del ADDRESS[/PREFIXLEN]]\n") \
1475        "        [[-]broadcast [ADDRESS]] [[-]pointopoint [ADDRESS]]\n" \
1476        "        [netmask ADDRESS] [dstaddr ADDRESS]\n" \
1477         USE_FEATURE_IFCONFIG_SLIP( \
1478        "        [outfill NN] [keepalive NN]\n") \
1479        "        " USE_FEATURE_IFCONFIG_HW("[hw ether ADDRESS] ") "[metric NN] [mtu NN]\n" \
1480        "        [[-]trailers] [[-]arp] [[-]allmulti]\n" \
1481        "        [multicast] [[-]promisc] [txqueuelen NN] [[-]dynamic]\n" \
1482         USE_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ( \
1483        "        [mem_start NN] [io_addr NN] [irq NN]\n") \
1484        "        [up|down] ..."
1485
1486 #define ifup_trivial_usage \
1487        "[-ahinv] ifaces..."
1488 #define ifup_full_usage \
1489        "Options:\n" \
1490        "        -a      De/configure all interfaces automatically\n" \
1491        "        -i FILE Use FILE for interface definitions\n" \
1492        "        -n      Print out what would happen, but don't do it\n" \
1493        "                (note that this option doesn't disable mappings)\n" \
1494        "        -v      Print out what would happen before doing it\n" \
1495        "        -m      Don't run any mappings\n" \
1496        "        -f      Force de/configuration"
1497
1498 #define ifdown_trivial_usage \
1499        "[-ahinv] ifaces..."
1500 #define ifdown_full_usage \
1501        "Options:\n" \
1502        "        -a      De/configure all interfaces automatically\n" \
1503        "        -i FILE Use FILE for interface definitions\n" \
1504        "        -n      Print out what would happen, but don't do it\n" \
1505        "                (note that this option doesn't disable mappings)\n" \
1506        "        -v      Print out what would happen before doing it\n" \
1507        "        -m      Don't run any mappings\n" \
1508        "        -f      Force de/configuration"
1509
1510 #define inetd_trivial_usage \
1511        "[-f] [-q len] [conf]"
1512 #define inetd_full_usage \
1513        "Listen for network connections and launch programs" \
1514        "\n\nOptions:\n" \
1515        "        -f      Run in foreground\n" \
1516        "        -q N    Set the size of the socket listen queue to N\n" \
1517        "                (default: 128)"
1518
1519 #define init_trivial_usage \
1520        ""
1521 #define init_full_usage \
1522        "Init is the parent of all processes"
1523 #define init_notes_usage \
1524 "This version of init is designed to be run only by the kernel.\n" \
1525 "\n" \
1526 "BusyBox init doesn't support multiple runlevels. The runlevels field of\n" \
1527 "the /etc/inittab file is completely ignored by BusyBox init. If you want\n" \
1528 "runlevels, use sysvinit.\n" \
1529 "\n" \
1530 "BusyBox init works just fine without an inittab. If no inittab is found,\n" \
1531 "it has the following default behavior:\n" \
1532 "\n" \
1533 "       ::sysinit:/etc/init.d/rcS\n" \
1534 "       ::askfirst:/bin/sh\n" \
1535 "       ::ctrlaltdel:/sbin/reboot\n" \
1536 "       ::shutdown:/sbin/swapoff -a\n" \
1537 "       ::shutdown:/bin/umount -a -r\n" \
1538 "       ::restart:/sbin/init\n" \
1539 "\n" \
1540 "if it detects that /dev/console is _not_ a serial console, it will also run:\n" \
1541 "\n" \
1542 "       tty2::askfirst:/bin/sh\n" \
1543 "       tty3::askfirst:/bin/sh\n" \
1544 "       tty4::askfirst:/bin/sh\n" \
1545 "\n" \
1546 "If you choose to use an /etc/inittab file, the inittab entry format is as follows:\n" \
1547 "\n" \
1548 "       <id>:<runlevels>:<action>:<process>\n" \
1549 "\n" \
1550 "       <id>:\n" \
1551 "\n" \
1552 "               WARNING: This field has a non-traditional meaning for BusyBox init!\n" \
1553 "               The id field is used by BusyBox init to specify the controlling tty for\n" \
1554 "               the specified process to run on. The contents of this field are\n" \
1555 "               appended to \"/dev/\" and used as-is. There is no need for this field to\n" \
1556 "               be unique, although if it isn't you may have strange results. If this\n" \
1557 "               field is left blank, the controlling tty is set to the console. Also\n" \
1558 "               note that if BusyBox detects that a serial console is in use, then only\n" \
1559 "               entries whose controlling tty is either the serial console or /dev/null\n" \
1560 "               will be run. BusyBox init does nothing with utmp. We don't need no\n" \
1561 "               stinkin' utmp.\n" \
1562 "\n" \
1563 "       <runlevels>:\n" \
1564 "\n" \
1565 "               The runlevels field is completely ignored.\n" \
1566 "\n" \
1567 "       <action>:\n" \
1568 "\n" \
1569 "               Valid actions include: sysinit, respawn, askfirst, wait,\n" \
1570 "               once, restart, ctrlaltdel, and shutdown.\n" \
1571 "\n" \
1572 "               The available actions can be classified into two groups: actions\n" \
1573 "               that are run only once, and actions that are re-run when the specified\n" \
1574 "               process exits.\n" \
1575 "\n" \
1576 "               Run only-once actions:\n" \
1577 "\n" \
1578 "                       'sysinit' is the first item run on boot. init waits until all\n" \
1579 "                       sysinit actions are completed before continuing. Following the\n" \
1580 "                       completion of all sysinit actions, all 'wait' actions are run.\n" \
1581 "                       'wait' actions, like 'sysinit' actions, cause init to wait until\n" \
1582 "                       the specified task completes. 'once' actions are asynchronous,\n" \
1583 "                       therefore, init does not wait for them to complete. 'restart' is\n" \
1584 "                       the action taken to restart the init process. By default this should\n" \
1585 "                       simply run /sbin/init, but can be a script which runs pivot_root or it\n" \
1586 "                       can do all sorts of other interesting things. The 'ctrlaltdel' init\n" \
1587 "                       actions are run when the system detects that someone on the system\n" \
1588 "                       console has pressed the CTRL-ALT-DEL key combination. Typically one\n" \
1589 "                       wants to run 'reboot' at this point to cause the system to reboot.\n" \
1590 "                       Finally the 'shutdown' action specifies the actions to taken when\n" \
1591 "                       init is told to reboot. Unmounting filesystems and disabling swap\n" \
1592 "                       is a very good here.\n" \
1593 "\n" \
1594 "               Run repeatedly actions:\n" \
1595 "\n" \
1596 "                       'respawn' actions are run after the 'once' actions. When a process\n" \
1597 "                       started with a 'respawn' action exits, init automatically restarts\n" \
1598 "                       it. Unlike sysvinit, BusyBox init does not stop processes from\n" \
1599 "                       respawning out of control. The 'askfirst' actions acts just like\n" \
1600 "                       respawn, except that before running the specified process it\n" \
1601 "                       displays the line \"Please press Enter to activate this console.\"\n" \
1602 "                       and then waits for the user to press enter before starting the\n" \
1603 "                       specified process.\n" \
1604 "\n" \
1605 "               Unrecognized actions (like initdefault) will cause init to emit an\n" \
1606 "               error message, and then go along with its business. All actions are\n" \
1607 "               run in the order they appear in /etc/inittab.\n" \
1608 "\n" \
1609 "       <process>:\n" \
1610 "\n" \
1611 "               Specifies the process to be executed and its command line.\n" \
1612 "\n" \
1613 "Example /etc/inittab file:\n" \
1614 "\n" \
1615 "       # This is run first except when booting in single-user mode\n" \
1616 "       #\n" \
1617 "       ::sysinit:/etc/init.d/rcS\n" \
1618 "       \n" \
1619 "       # /bin/sh invocations on selected ttys\n" \
1620 "       #\n" \
1621 "       # Start an \"askfirst\" shell on the console (whatever that may be)\n" \
1622 "       ::askfirst:-/bin/sh\n" \
1623 "       # Start an \"askfirst\" shell on /dev/tty2-4\n" \
1624 "       tty2::askfirst:-/bin/sh\n" \
1625 "       tty3::askfirst:-/bin/sh\n" \
1626 "       tty4::askfirst:-/bin/sh\n" \
1627 "       \n" \
1628 "       # /sbin/getty invocations for selected ttys\n" \
1629 "       #\n" \
1630 "       tty4::respawn:/sbin/getty 38400 tty4\n" \
1631 "       tty5::respawn:/sbin/getty 38400 tty5\n" \
1632 "       \n" \
1633 "       \n" \
1634 "       # Example of how to put a getty on a serial line (for a terminal)\n" \
1635 "       #\n" \
1636 "       #::respawn:/sbin/getty -L ttyS0 9600 vt100\n" \
1637 "       #::respawn:/sbin/getty -L ttyS1 9600 vt100\n" \
1638 "       #\n" \
1639 "       # Example how to put a getty on a modem line\n" \
1640 "       #::respawn:/sbin/getty 57600 ttyS2\n" \
1641 "       \n" \
1642 "       # Stuff to do when restarting the init process\n" \
1643 "       ::restart:/sbin/init\n" \
1644 "       \n" \
1645 "       # Stuff to do before rebooting\n" \
1646 "       ::ctrlaltdel:/sbin/reboot\n" \
1647 "       ::shutdown:/bin/umount -a -r\n" \
1648 "       ::shutdown:/sbin/swapoff -a\n"
1649
1650 #define insmod_trivial_usage \
1651         USE_FEATURE_2_4_MODULES("[OPTION]... ") "MODULE [symbol=value]..."
1652 #define insmod_full_usage \
1653        "Load the specified kernel modules into the kernel" \
1654         USE_FEATURE_2_4_MODULES( \
1655        "\n\nOptions:\n" \
1656        "        -f      Force module to load into the wrong kernel version\n" \
1657        "        -k      Make module autoclean-able\n" \
1658        "        -v      Verbose\n" \
1659        "        -q      Quiet\n" \
1660        "        -L      Lock to prevent simultaneous loads of a module\n" \
1661         USE_FEATURE_INSMOD_LOAD_MAP( \
1662        "        -m      Output load map to stdout\n" \
1663         ) \
1664        "        -o NAME Set internal module name to NAME\n" \
1665        "        -x      Do not export externs" \
1666         )
1667
1668 #define install_trivial_usage \
1669        "[-cgmops] [sources] dest|directory"
1670 #define install_full_usage \
1671        "Copy files and set attributes" \
1672        "\n\nOptions:\n" \
1673        "        -c      Copy the file, default\n" \
1674        "        -d      Create directories\n" \
1675        "        -g      Set group ownership\n" \
1676        "        -m      Set permissions\n" \
1677        "        -o      Set ownership\n" \
1678        "        -p      Preserve date\n" \
1679        "        -s      Strip symbol tables" \
1680         USE_SELINUX( \
1681        "\n      -Z      Set security context of copy" \
1682         )
1683 /* would need to make the " | " optional depending on more than one selected */
1684 #define ip_trivial_usage \
1685        "[OPTIONS] {" \
1686         USE_FEATURE_IP_ADDRESS("address | ") \
1687         USE_FEATURE_IP_ROUTE("route | ") \
1688         USE_FEATURE_IP_LINK("link | ") \
1689         USE_FEATURE_IP_TUNNEL("tunnel | ") \
1690         USE_FEATURE_IP_RULE("rule") \
1691        "} {COMMAND}"
1692 #define ip_full_usage \
1693        "ip [OPTIONS] OBJECT {COMMAND}\n" \
1694        "where OBJECT := {" \
1695         USE_FEATURE_IP_ADDRESS("address | ") \
1696         USE_FEATURE_IP_ROUTE("route | ") \
1697         USE_FEATURE_IP_LINK("link | ") \
1698         USE_FEATURE_IP_TUNNEL("tunnel | ") \
1699         USE_FEATURE_IP_RULE("rule") \
1700        "}\n" \
1701        "OPTIONS := { -f[amily] { inet | inet6 | link } | -o[neline] }"
1702
1703 #define ipaddr_trivial_usage \
1704        "{ {add|del} IFADDR dev STRING | {show|flush}\n" \
1705        "                [dev STRING] [to PREFIX] }"
1706 #define ipaddr_full_usage \
1707        "ipaddr {add|delete} IFADDR dev STRING\n" \
1708        "ipaddr {show|flush} [dev STRING] [scope SCOPE-ID]\n" \
1709        "        [to PREFIX] [label PATTERN]\n" \
1710        "        IFADDR := PREFIX | ADDR peer PREFIX\n" \
1711        "        [broadcast ADDR] [anycast ADDR]\n" \
1712        "        [label STRING] [scope SCOPE-ID]\n" \
1713        "        SCOPE-ID := [host | link | global | NUMBER]"
1714
1715 #define ipcalc_trivial_usage \
1716        "[OPTION]... ADDRESS[[/]NETMASK] [NETMASK]"
1717 #define ipcalc_full_usage \
1718        "Calculate IP network settings from a IP address" \
1719        "\n\nOptions:" \
1720         USE_FEATURE_IPCALC_LONG_OPTIONS( \
1721        "\n      -b,--broadcast  Display calculated broadcast address" \
1722        "\n      -n,--network    Display calculated network address" \
1723        "\n      -m,--netmask    Display default netmask for IP" \
1724         USE_FEATURE_IPCALC_FANCY( \
1725        "\n      -p,--prefix     Display the prefix for IP/NETMASK" \
1726        "\n      -h,--hostname   Display first resolved host name" \
1727        "\n      -s,--silent     Don't ever display error messages" \
1728         ) \
1729         ) \
1730         SKIP_FEATURE_IPCALC_LONG_OPTIONS( \
1731        "\n      -b      Display calculated broadcast address" \
1732        "\n      -n      Display calculated network address" \
1733        "\n      -m      Display default netmask for IP" \
1734         USE_FEATURE_IPCALC_FANCY( \
1735        "\n      -p      Display the prefix for IP/NETMASK" \
1736        "\n      -h      Display first resolved host name" \
1737        "\n      -s      Don't ever display error messages" \
1738         ) \
1739         )
1740
1741 #define ipcrm_trivial_usage \
1742        "[-[MQS] key] [-[mqs] id]"
1743 #define ipcrm_full_usage \
1744        "The upper-case options MQS are used to remove a shared memory segment by a\n" \
1745        "segment by a shmkey value. The lower-case options mqs are used\n" \
1746        "to remove a segment by shmid value.\n" \
1747        "\n\nOptions:\n" \
1748        "        -[mM]   Remove the memory segment after the last detach\n" \
1749        "        -[qQ]   Remove the message queue\n" \
1750        "        -[sS]   Remove the semaphore"
1751
1752 #define ipcs_trivial_usage \
1753        "[[-smq] -i shmid] | [[-asmq] [-tcplu]]"
1754 #define ipcs_full_usage \
1755        "        -i      Show a specific resource\n" \
1756        "Resource specification:\n" \
1757        "        -m      Shared memory segments\n" \
1758        "        -q      Message queues\n" \
1759        "        -s      Semaphore arrays\n" \
1760        "        -a      All (default)\n" \
1761        "Output format:\n" \
1762        "        -t      Time\n" \
1763        "        -c      Creator\n" \
1764        "        -p      Pid\n" \
1765        "        -l      Limits\n" \
1766        "        -u      Summary"
1767
1768 #define iplink_trivial_usage \
1769        "{ set DEVICE { up | down | arp { on | off } | show [DEVICE] }"
1770 #define iplink_full_usage \
1771        "iplink set DEVICE { up | down | arp | multicast { on | off } |\n" \
1772        "                        dynamic { on | off } |\n" \
1773        "                        mtu MTU }\n" \
1774        "iplink show [DEVICE]"
1775
1776 #define iproute_trivial_usage \
1777        "{ list | flush | { add | del | change | append |\n" \
1778        "                replace | monitor } ROUTE }"
1779 #define iproute_full_usage \
1780        "iproute { list | flush } SELECTOR\n" \
1781        "iproute get ADDRESS [from ADDRESS iif STRING]\n" \
1782        "                        [oif STRING]  [tos TOS]\n" \
1783        "iproute { add | del | change | append | replace | monitor } ROUTE\n" \
1784        "                        SELECTOR := [root PREFIX] [match PREFIX] [proto RTPROTO]\n" \
1785        "                        ROUTE := [TYPE] PREFIX [tos TOS] [proto RTPROTO]"
1786
1787 #define iprule_trivial_usage \
1788        "{[list | add | del] RULE}"
1789 #define iprule_full_usage \
1790        "iprule [list | add | del] SELECTOR ACTION\n" \
1791        "        SELECTOR := [from PREFIX] [to PREFIX] [tos TOS] [fwmark FWMARK]\n" \
1792        "                        [dev STRING] [pref NUMBER]\n" \
1793        "        ACTION := [table TABLE_ID] [nat ADDRESS]\n" \
1794        "                        [prohibit | reject | unreachable]\n" \
1795        "                        [realms [SRCREALM/]DSTREALM]\n" \
1796        "        TABLE_ID := [local | main | default | NUMBER]"
1797
1798 #define iptunnel_trivial_usage \
1799        "{ add | change | del | show } [NAME]\n" \
1800        "        [mode { ipip | gre | sit }]\n" \
1801        "        [remote ADDR] [local ADDR] [ttl TTL]"
1802 #define iptunnel_full_usage \
1803        "iptunnel { add | change | del | show } [NAME]\n" \
1804        "        [mode { ipip | gre | sit }] [remote ADDR] [local ADDR]\n" \
1805        "        [[i|o]seq] [[i|o]key KEY] [[i|o]csum]\n" \
1806        "        [ttl TTL] [tos TOS] [[no]pmtudisc] [dev PHYS_DEV]"
1807
1808 #define kbd_mode_trivial_usage \
1809        "[-a|k|s|u]"
1810 #define kbd_mode_full_usage \
1811        "Report or set the keyboard mode" \
1812        "\n\nOptions set mode:\n" \
1813        "        -a      Default (ASCII)\n" \
1814        "        -k      Medium-raw (keyboard)\n" \
1815        "        -s      Raw (scancode)\n" \
1816        "        -u      Unicode (utf-8)"
1817
1818 #define kill_trivial_usage \
1819        "[-l] [-signal] process-id [process-id ...]"
1820 #define kill_full_usage \
1821        "Send a signal (default is TERM) to the specified process(es)" \
1822        "\n\nOptions:\n" \
1823        "        -l      List all signal names and numbers"
1824 #define kill_example_usage \
1825        "$ ps | grep apache\n" \
1826        "252 root     root     S [apache]\n" \
1827        "263 www-data www-data S [apache]\n" \
1828        "264 www-data www-data S [apache]\n" \
1829        "265 www-data www-data S [apache]\n" \
1830        "266 www-data www-data S [apache]\n" \
1831        "267 www-data www-data S [apache]\n" \
1832        "$ kill 252\n"
1833
1834 #define killall_trivial_usage \
1835        "[-l] [-q] [-signal] process-name [process-name ...]"
1836 #define killall_full_usage \
1837        "Send a signal (default is TERM) to the specified process(es)" \
1838        "\n\nOptions:\n" \
1839        "        -l      List all signal names and numbers\n" \
1840        "        -q      Do not complain if no processes were killed"
1841 #define killall_example_usage \
1842        "$ killall apache\n"
1843
1844 #define killall5_trivial_usage \
1845        "[-l] [-signal]"
1846 #define killall5_full_usage \
1847        "Send a signal (default is TERM) to all processes outside current session" \
1848        "\n\nOptions:\n" \
1849        "        -l      List all signal names and numbers\n" \
1850
1851 #define klogd_trivial_usage \
1852        "[-c n] [-n]"
1853 #define klogd_full_usage \
1854        "Kernel logger" \
1855        "\n\nOptions:\n" \
1856        "        -c n    Sets the default log level of console messages to n\n" \
1857        "        -n      Run in foreground"
1858
1859 #define length_trivial_usage \
1860        "STRING"
1861 #define length_full_usage \
1862        "Print out the length of the specified STRING"
1863 #define length_example_usage \
1864        "$ length Hello\n" \
1865        "5\n"
1866
1867 #define less_trivial_usage \
1868        "[-EMNmh~?] FILE1 FILE2..."
1869 #define less_full_usage \
1870        "View a file or list of files. The position within files can be\n" \
1871        "changed, and files can be manipulated in various ways." \
1872        "\n\nOptions:\n" \
1873        "        -E      Quit once the end of a file is reached\n" \
1874        "        -M,-m   Display a status line containing the current line numbers\n" \
1875        "                and the percentage through the file\n" \
1876        "        -N      Prefix line numbers to each line\n" \
1877        "        -~      Suppress ~s displayed when input past the end of the file is\n" \
1878        "                reached"
1879
1880 #define setarch_trivial_usage \
1881        "personality program [args ...]"
1882 #define setarch_full_usage \
1883        "Personality may be:\n" \
1884        "        linux32         Set 32bit uname emulation\n" \
1885        "        linux64         Set 64bit uname emulation"
1886
1887 #define ln_trivial_usage \
1888        "[OPTION] TARGET... LINK_NAME|DIRECTORY"
1889 #define ln_full_usage \
1890        "Create a link named LINK_NAME or DIRECTORY to the specified TARGET.\n" \
1891        "You may use '--' to indicate that all following arguments are non-options." \
1892        "\n\nOptions:\n" \
1893        "        -s      Make symlinks instead of hardlinks\n" \
1894        "        -f      Remove existing destination files\n" \
1895        "        -n      Don't dereference symlinks - treat like normal file\n" \
1896        "        -b      Make a backup of the target (if exists) before link operation\n" \
1897        "        -S suf  Use suffix instead of ~ when making backup files"
1898 #define ln_example_usage \
1899        "$ ln -s BusyBox /tmp/ls\n" \
1900        "$ ls -l /tmp/ls\n" \
1901        "lrwxrwxrwx    1 root     root            7 Apr 12 18:39 ls -> BusyBox*\n"
1902
1903 #define load_policy_trivial_usage
1904
1905 #define load_policy_full_usage
1906
1907 #define loadfont_trivial_usage \
1908        "< font"
1909 #define loadfont_full_usage \
1910        "Load a console font from standard input"
1911 #define loadfont_example_usage \
1912        "$ loadfont < /etc/i18n/fontname\n"
1913
1914 #define loadkmap_trivial_usage \
1915        "< keymap"
1916 #define loadkmap_full_usage \
1917        "Load a binary keyboard translation table from standard input"
1918 #define loadkmap_example_usage \
1919        "$ loadkmap < /etc/i18n/lang-keymap\n"
1920
1921 #define logger_trivial_usage \
1922        "[OPTION]... [MESSAGE]"
1923 #define logger_full_usage \
1924        "Write MESSAGE to the system log. If MESSAGE is omitted, log stdin." \
1925        "\n\nOptions:\n" \
1926        "        -s      Log to stderr as well as the system log\n" \
1927        "        -t TAG  Log using the specified tag (defaults to user name)\n" \
1928        "        -p PRIO Enter the message with the specified priority.\n" \
1929        "                This may be numerical or a 'facility.level' pair."
1930 #define logger_example_usage \
1931        "$ logger \"hello\"\n"
1932
1933 #define login_trivial_usage \
1934        "[OPTION]... [username] [ENV=VAR ...]"
1935 #define login_full_usage \
1936        "Begin a new session on the system" \
1937        "\n\nOptions:\n" \
1938        "        -f      Do not authenticate (user already authenticated)\n" \
1939        "        -h      Name of the remote host for this login\n" \
1940        "        -p      Preserve environment"
1941
1942 #define logname_trivial_usage \
1943        ""
1944 #define logname_full_usage \
1945        "Print the name of the current user"
1946 #define logname_example_usage \
1947        "$ logname\n" \
1948        "root\n"
1949
1950 #define logread_trivial_usage \
1951        "[OPTION]..."
1952 #define logread_full_usage \
1953        "Show the messages from syslogd (using circular buffer)" \
1954        "\n\nOptions:\n" \
1955        "        -f      Output data as the log grows"
1956
1957 #define losetup_trivial_usage \
1958        "[-o OFS] LOOPDEV FILE - associate loop devices\n" \
1959        "        losetup -d LOOPDEV - disassociate\n" \
1960        "        losetup [-f] - show"
1961 #define losetup_full_usage \
1962        "Options:\n" \
1963        "        -o OFS  Start OFS bytes into FILE\n" \
1964        "        -f      Show first free loop device"
1965 #define losetup_notes_usage \
1966        "No arguments will display all current associations.\n" \
1967        "One argument (losetup /dev/loop1) will display the current association\n" \
1968        "(if any), or disassociate it (with -d). The display shows the offset\n" \
1969        "and filename of the file the loop device is currently bound to.\n\n" \
1970        "Two arguments (losetup /dev/loop1 file.img) create a new association,\n" \
1971        "with an optional offset (-o 12345). Encryption is not yet supported.\n" \
1972        "losetup -f will show the first loop free loop device\n\n"
1973
1974 #define ls_trivial_usage \
1975        "[-1Aa" USE_FEATURE_LS_TIMESTAMPS("c") "Cd" \
1976         USE_FEATURE_LS_TIMESTAMPS("e") USE_FEATURE_LS_FILETYPES("F") "iln" \
1977         USE_FEATURE_LS_FILETYPES("p") USE_FEATURE_LS_FOLLOWLINKS("L") \
1978         USE_FEATURE_LS_RECURSIVE("R") USE_FEATURE_LS_SORTFILES("rS") "s" \
1979         USE_FEATURE_AUTOWIDTH("T") USE_FEATURE_LS_TIMESTAMPS("tu") \
1980         USE_FEATURE_LS_SORTFILES("v") USE_FEATURE_AUTOWIDTH("w") "x" \
1981         USE_FEATURE_LS_SORTFILES("X") USE_FEATURE_HUMAN_READABLE("h") "k" \
1982         USE_SELINUX("K") "] [filenames...]"
1983 #define ls_full_usage \
1984        "List directory contents" \
1985        "\n\nOptions:" \
1986        "\n      -1      List files in a single column" \
1987        "\n      -A      Do not list implied . and .." \
1988        "\n      -a      Do not hide entries starting with ." \
1989        "\n      -C      List entries by columns" \
1990         USE_FEATURE_LS_TIMESTAMPS( \
1991        "\n      -c      With -l: show ctime") \
1992         USE_FEATURE_LS_COLOR( \
1993        "\n      --color[={always,never,auto}]   Control coloring") \
1994        "\n      -d      List directory entries instead of contents" \
1995         USE_FEATURE_LS_TIMESTAMPS( \
1996        "\n      -e      List both full date and full time") \
1997         USE_FEATURE_LS_FILETYPES( \
1998        "\n      -F      Append indicator (one of */=@|) to entries") \
1999        "\n      -i      List the i-node for each file" \
2000        "\n      -l      Use a long listing format" \
2001        "\n      -n      List numeric UIDs and GIDs instead of names" \
2002         USE_FEATURE_LS_FILETYPES( \
2003        "\n      -p      Append indicator (one of /=@|) to entries") \
2004         USE_FEATURE_LS_FOLLOWLINKS( \
2005        "\n      -L      List entries pointed to by symlinks") \
2006         USE_FEATURE_LS_RECURSIVE( \
2007        "\n      -R      List subdirectories recursively") \
2008         USE_FEATURE_LS_SORTFILES( \
2009        "\n      -r      Sort the listing in reverse order") \
2010         USE_FEATURE_LS_SORTFILES( \
2011        "\n      -S      Sort the listing by file size") \
2012        "\n      -s      List the size of each file, in blocks" \
2013         USE_FEATURE_AUTOWIDTH( \
2014        "\n      -T NUM  Assume Tabstop every NUM columns") \
2015         USE_FEATURE_LS_TIMESTAMPS( \
2016        "\n      -t      With -l: show modification time") \
2017         USE_FEATURE_LS_TIMESTAMPS( \
2018        "\n      -u      With -l: show access time") \
2019         USE_FEATURE_LS_SORTFILES( \
2020        "\n      -v      Sort the listing by version") \
2021         USE_FEATURE_AUTOWIDTH( \
2022        "\n      -w NUM  Assume the terminal is NUM columns wide") \
2023        "\n      -x      List entries by lines instead of by columns" \
2024         USE_FEATURE_LS_SORTFILES( \
2025        "\n      -X      Sort the listing by extension") \
2026         USE_FEATURE_HUMAN_READABLE( \
2027        "\n      -h      Print sizes in human readable format (e.g., 1K 243M 2G)") \
2028         USE_SELINUX( \
2029        "\n      -k      Print security context") \
2030         USE_SELINUX( \
2031        "\n      -K      Print security context in long format") \
2032         USE_SELINUX( \
2033        "\n      -Z      Print security context and permission")
2034
2035 #define lsattr_trivial_usage \
2036        "[-Radlv] [files...]"
2037 #define lsattr_full_usage \
2038        "List file attributes on an ext2 fs" \
2039        "\n\nOptions:\n" \
2040        "        -R      Recursively list subdirectories\n" \
2041        "        -a      Do not hide entries starting with .\n" \
2042        "        -d      List directory entries instead of contents\n" \
2043        "        -l      Print long flag names\n" \
2044        "        -v      List the file's version/generation number"
2045
2046 #define lsmod_trivial_usage \
2047        ""
2048 #define lsmod_full_usage \
2049        "List the currently loaded kernel modules"
2050
2051 #if ENABLE_FEATURE_MAKEDEVS_LEAF
2052 #define makedevs_trivial_usage \
2053        "NAME TYPE MAJOR MINOR FIRST LAST [s]"
2054 #define makedevs_full_usage \
2055        "Create a range of block or character special files\n\n" \
2056        "TYPEs include:\n" \
2057        "        b:      Make a block (buffered) device\n" \
2058        "        c or u: Make a character (un-buffered) device\n" \
2059        "        p:      Make a named pipe. MAJOR and MINOR are ignored for named pipes\n" \
2060        "\n" \
2061        "FIRST specifies the number appended to NAME to create the first device.\n" \
2062        "LAST specifies the number of the last item that should be created\n" \
2063        "If 's' is the last argument, the base device is created as well.\n\n" \
2064        "For example:\n" \
2065        "        makedevs /dev/ttyS c 4 66 2 63   ->  ttyS2-ttyS63\n" \
2066        "        makedevs /dev/hda b 3 0 0 8 s    ->  hda,hda1-hda8"
2067 #define makedevs_example_usage \
2068        "# makedevs /dev/ttyS c 4 66 2 63\n" \
2069        "[creates ttyS2-ttyS63]\n" \
2070        "# makedevs /dev/hda b 3 0 0 8 s\n" \
2071        "[creates hda,hda1-hda8]\n"
2072 #endif
2073
2074 #if ENABLE_FEATURE_MAKEDEVS_TABLE
2075 #define makedevs_trivial_usage \
2076        "[-d device_table] rootdir"
2077 #define makedevs_full_usage \
2078        "Create a range of special files as specified in a device table.\n" \
2079        "Device table entries take the form of:\n" \
2080        "<type> <mode> <uid> <gid> <major> <minor> <start> <inc> <count>\n" \
2081        "Where name is the file name, type can be one of:\n" \
2082        "        f       A regular file\n" \
2083        "        d       Directory\n" \
2084        "        c       Character special device file\n" \
2085        "        b       Block special device file\n" \
2086        "        p       Fifo (named pipe)\n" \
2087        "uid is the user id for the target file, gid is the group id for the\n" \
2088        "target file. The rest of the entries (major, minor, etc) apply to\n" \
2089        "to device special files. A '-' may be used for blank entries."
2090 #define makedevs_example_usage \
2091        "For example:\n" \
2092        "<name>    <type> <mode><uid><gid><major><minor><start><inc><count>\n" \
2093        "/dev         d   755    0    0    -      -      -      -    -\n" \
2094        "/dev/console c   666    0    0    5      1      -      -    -\n" \
2095        "/dev/null    c   666    0    0    1      3      0      0    -\n" \
2096        "/dev/zero    c   666    0    0    1      5      0      0    -\n" \
2097        "/dev/hda     b   640    0    0    3      0      0      0    -\n" \
2098        "/dev/hda     b   640    0    0    3      1      1      1    15\n\n" \
2099        "Will Produce:\n" \
2100        "/dev\n" \
2101        "/dev/console\n" \
2102        "/dev/null\n" \
2103        "/dev/zero\n" \
2104        "/dev/hda\n" \
2105        "/dev/hda[0-15]\n"
2106 #endif
2107
2108 #define matchpathcon_trivial_usage \
2109        "[-n] [-N] [-f file_contexts_file] [-p prefix] [-V]"
2110 #define matchpathcon_full_usage \
2111        "        -n      Do not display path" \
2112        "\n      -N      Do not use translations" \
2113        "\n      -f      Use alternate file_context file" \
2114        "\n      -p      Use prefix to speed translations" \
2115        "\n      -V      Verify file context on disk matches defaults"
2116
2117 #define md5sum_trivial_usage \
2118        "[OPTION] [FILEs...]" \
2119         USE_FEATURE_MD5_SHA1_SUM_CHECK("\n   or: md5sum [OPTION] -c [FILE]")
2120 #define md5sum_full_usage \
2121        "Print" USE_FEATURE_MD5_SHA1_SUM_CHECK(" or check") " MD5 checksums" \
2122        "\n\nOptions:\n" \
2123        "With no FILE, or when FILE is -, read standard input." \
2124         USE_FEATURE_MD5_SHA1_SUM_CHECK("\n\n" \
2125        "        -c      Check MD5 sums against given list\n" \
2126        "\nThe following two options are useful only when verifying checksums:\n" \
2127        "        -s      Don't output anything, status code shows success\n" \
2128        "        -w      Warn about improperly formatted MD5 checksum lines")
2129 #define md5sum_example_usage \
2130        "$ md5sum < busybox\n" \
2131        "6fd11e98b98a58f64ff3398d7b324003\n" \
2132        "$ md5sum busybox\n" \
2133        "6fd11e98b98a58f64ff3398d7b324003  busybox\n" \
2134        "$ md5sum -c -\n" \
2135        "6fd11e98b98a58f64ff3398d7b324003  busybox\n" \
2136        "busybox: OK\n" \
2137        "^D\n"
2138
2139 #define mdev_trivial_usage \
2140        "[-s]"
2141 #define mdev_full_usage \
2142        "        -s      Scan /sys and populate /dev during system boot\n\n" \
2143        "Called with no options (via hotplug) it uses environment variables\n" \
2144        "to determine which device to add/remove."
2145 #define mdev_notes_usage "" \
2146         USE_FEATURE_MDEV_CONFIG( \
2147        "The mdev config file contains lines that look like:\n" \
2148        "  hd[a-z][0-9]* 0:3 660\n\n" \
2149        "That's device name (with regex match), uid:gid, and permissions.\n\n" \
2150         USE_FEATURE_MDEV_EXEC( \
2151        "Optionally, that can be followed (on the same line) by a special character\n" \
2152        "and a command line to run after creating/before deleting the corresponding\n" \
2153        "device(s). The environment variable $MDEV indicates the active device node\n" \
2154        "(which is useful if it's a regex match). For example:\n\n" \
2155        "  hdc root:cdrom 660  *ln -s $MDEV cdrom\n\n" \
2156        "The special characters are @ (run after creating), $ (run before deleting),\n" \
2157        "and * (run both after creating and before deleting). The commands run in\n" \
2158        "the /dev directory, and use system() which calls /bin/sh.\n\n" \
2159         ) \
2160        "Config file parsing stops on the first matching line. If no config\n"\
2161        "entry is matched, devices are created with default 0:0 660. (Make\n"\
2162        "the last line match .* to override this.)\n\n" \
2163         )
2164
2165 #define mesg_trivial_usage \
2166        "[y|n]"
2167 #define mesg_full_usage \
2168        "Control write access to your terminal\n" \
2169        "        y       Allow write access to your terminal\n" \
2170        "        n       Disallow write access to your terminal"
2171
2172 #define microcom_trivial_usage \
2173         "[-s speed] tty-name"
2174 #define microcom_full_usage \
2175         ""
2176
2177 #define mkdir_trivial_usage \
2178        "[OPTION] DIRECTORY..."
2179 #define mkdir_full_usage \
2180        "Create the DIRECTORY(ies) if they do not already exist" \
2181        "\n\nOptions:\n" \
2182        "        -m      Set permission mode (as in chmod), not rwxrwxrwx - umask\n" \
2183        "        -p      No error if existing, make parent directories as needed" \
2184         USE_SELINUX( \
2185        "\n      -Z      Set security context" \
2186         )
2187
2188 #define mkdir_example_usage \
2189        "$ mkdir /tmp/foo\n" \
2190        "$ mkdir /tmp/foo\n" \
2191        "/tmp/foo: File exists\n" \
2192        "$ mkdir /tmp/foo/bar/baz\n" \
2193        "/tmp/foo/bar/baz: No such file or directory\n" \
2194        "$ mkdir -p /tmp/foo/bar/baz\n"
2195
2196 #define mke2fs_trivial_usage \
2197        "[-c|-l filename] [-b block-size] [-f fragment-size] [-g blocks-per-group] " \
2198        "[-i bytes-per-inode] [-j] [-J journal-options] [-N number-of-inodes] [-n] " \
2199        "[-m reserved-blocks-percentage] [-o creator-os] [-O feature[,...]] [-q] " \
2200        "[r fs-revision-level] [-E extended-options] [-v] [-F] [-L volume-label] " \
2201        "[-M last-mounted-directory] [-S] [-T filesystem-type] " \
2202        "device [blocks-count]"
2203 #define mke2fs_full_usage \
2204        "        -b size         Block size in bytes\n" \
2205        "        -c              Check for bad blocks before creating\n" \
2206        "        -E opts         Set extended options\n" \
2207        "        -f size         Fragment size in bytes\n" \
2208        "        -F              Force (ignore sanity checks)\n" \
2209        "        -g num          Number of blocks in a block group\n" \
2210        "        -i ratio        The bytes/inode ratio\n" \
2211        "        -j              Create a journal (ext3)\n" \
2212        "        -J opts         Set journal options (size/device)\n" \
2213        "        -l file         Read bad blocks list from file\n" \
2214        "        -L lbl          Set the volume label\n" \
2215        "        -m percent      Percent of fs blocks to reserve for admin\n" \
2216        "        -M dir          Set last mounted directory\n" \
2217        "        -n              Do not actually create anything\n" \
2218        "        -N num          Number of inodes to create\n" \
2219        "        -o os           Set the 'creator os' field\n" \
2220        "        -O features     Dir_index/filetype/has_journal/journal_dev/sparse_super\n" \
2221        "        -q              Quiet\n" \
2222        "        -r rev          Set filesystem revision\n" \
2223        "        -S              Write superblock and group descriptors only\n" \
2224        "        -T fs-type      Set usage type (news/largefile/largefile4)\n" \
2225        "        -v              Verbose"
2226
2227 #define mkfifo_trivial_usage \
2228        "[OPTIONS] name"
2229 #define mkfifo_full_usage \
2230        "Create a named pipe (identical to 'mknod name p')" \
2231        "\n\nOptions:\n" \
2232        "        -m      Create the pipe using the specified mode (default a=rw)" \
2233         USE_SELINUX( \
2234        "\n      -Z      Set security context" \
2235         )
2236
2237 #define mkfs_minix_trivial_usage \
2238        "[-c | -l filename] [-nXX] [-iXX] /dev/name [blocks]"
2239 #define mkfs_minix_full_usage \
2240        "Make a MINIX filesystem" \
2241        "\n\nOptions:\n" \
2242        "        -c              Check device for bad blocks\n" \
2243        "        -n [14|30]      Maximum length of filenames\n" \
2244        "        -i INODES       Number of inodes for the filesystem\n" \
2245        "        -l FILENAME     Read bad blocks list from FILENAME\n" \
2246        "        -v              Make a Minix version 2 filesystem"
2247
2248 #define mknod_trivial_usage \
2249        "[OPTIONS] NAME TYPE MAJOR MINOR"
2250 #define mknod_full_usage \
2251        "Create a special file (block, character, or pipe)" \
2252        "\n\nOptions:\n" \
2253        "        -m      Create the special file using the specified mode (default a=rw)" \
2254        "\n\nTYPEs include:\n" \
2255        "        b:      Make a block (buffered) device\n" \
2256        "        c or u: Make a character (un-buffered) device\n" \
2257        "        p:      Make a named pipe. MAJOR and MINOR are ignored for named pipes" \
2258         USE_SELINUX( \
2259        "\n      -Z      Set security context" \
2260         )
2261
2262 #define mknod_example_usage \
2263        "$ mknod /dev/fd0 b 2 0\n" \
2264        "$ mknod -m 644 /tmp/pipe p\n"
2265
2266 #define mkswap_trivial_usage \
2267        "[-c] [-v0|-v1] device [block-count]"
2268 #define mkswap_full_usage \
2269        "Prepare a disk partition to be used as swap partition" \
2270        "\n\nOptions:\n" \
2271        "        -c              Check for read-ability\n" \
2272        "        -v0             Make version 0 swap [max 128 Megs]\n" \
2273        "        -v1             Make version 1 swap [big!] (default for kernels > 2.1.117)\n" \
2274        "        block-count     Number of block to use (default is entire partition)"
2275
2276 #define mktemp_trivial_usage \
2277        "[-dq] TEMPLATE"
2278 #define mktemp_full_usage \
2279        "Create a temporary file with its name based on TEMPLATE.\n" \
2280        "TEMPLATE is any name with six 'Xs' (i.e., /tmp/temp.XXXXXX)." \
2281        "\n\nOptions:\n" \
2282        "        -d      Make a directory instead of a file\n" \
2283        "        -q      Fail silently if an error occurs"
2284 #define mktemp_example_usage \
2285        "$ mktemp /tmp/temp.XXXXXX\n" \
2286        "/tmp/temp.mWiLjM\n" \
2287        "$ ls -la /tmp/temp.mWiLjM\n" \
2288        "-rw-------    1 andersen andersen        0 Apr 25 17:10 /tmp/temp.mWiLjM\n"
2289
2290 #define modprobe_trivial_usage \
2291        "[-knqrsv] MODULE [symbol=value ...]"
2292 #define modprobe_full_usage \
2293        "Options:\n" \
2294        "        -k      Make module autoclean-able\n" \
2295        "        -n      Dry run\n" \
2296        "        -q      Quiet\n" \
2297        "        -r      Remove module (stacks) or do autoclean\n" \
2298        "        -s      Report via syslog instead of stderr\n" \
2299        "        -v      Verbose"
2300 #define modprobe_notes_usage \
2301 "modprobe can (un)load a stack of modules, passing each module options (when\n" \
2302 "loading). modprobe uses a configuration file to determine what option(s) to\n" \
2303 "pass each module it loads.\n" \
2304 "\n" \
2305 "The configuration file is searched (in order) amongst:\n" \
2306 "\n" \
2307 "    /etc/modprobe.conf (2.6 only)\n" \
2308 "    /etc/modules.conf\n" \
2309 "    /etc/conf.modules (deprecated)\n" \
2310 "\n" \
2311 "They all have the same syntax (see below). If none is present, it is\n" \
2312 "_not_ an error; each loaded module is then expected to load without\n" \
2313 "options. Once a file is found, the others are tested for.\n" \
2314 "\n" \
2315 "/etc/modules.conf entry format:\n" \
2316 "\n" \
2317 "  alias <alias_name> <mod_name>\n" \
2318 "    Makes it possible to modprobe alias_name, when there is no such module.\n" \
2319 "    It makes sense if your mod_name is long, or you want a more representative\n" \
2320 "    name for that module (eg. 'scsi' in place of 'aha7xxx').\n" \
2321 "    This makes it also possible to use a different set of options (below) for\n" \
2322 "    the module and the alias.\n" \
2323 "    A module can be aliased more than once.\n" \
2324 "\n" \
2325 "  options <mod_name|alias_name> <symbol=value ...>\n" \
2326 "    When loading module mod_name (or the module aliased by alias_name), pass\n" \
2327 "    the \"symbol=value\" pairs as option to that module.\n" \
2328 "\n" \
2329 "Sample /etc/modules.conf file:\n" \
2330 "\n" \
2331 "  options tulip irq=3\n" \
2332 "  alias tulip tulip2\n" \
2333 "  options tulip2 irq=4 io=0x308\n" \
2334 "\n" \
2335 "Other functionality offered by 'classic' modprobe is not available in\n" \
2336 "this implementation.\n" \
2337 "\n" \
2338 "If module options are present both in the config file, and on the command line,\n" \
2339 "then the options from the command line will be passed to the module _after_\n" \
2340 "the options from the config file. That way, you can have defaults in the config\n" \
2341 "file, and override them for a specific usage from the command line.\n"
2342 #define modprobe_example_usage \
2343        "(with the above /etc/modules.conf):\n\n" \
2344        "$ modprobe tulip\n" \
2345        "   will load the module 'tulip' with default option 'irq=3'\n\n" \
2346        "$ modprobe tulip irq=5\n" \
2347        "   will load the module 'tulip' with option 'irq=5', thus overriding the default\n\n" \
2348        "$ modprobe tulip2\n" \
2349        "   will load the module 'tulip' with default options 'irq=4 io=0x308',\n" \
2350        "   which are the default for alias 'tulip2'\n\n" \
2351        "$ modprobe tulip2 irq=8\n" \
2352        "   will load the module 'tulip' with default options 'irq=4 io=0x308 irq=8',\n" \
2353        "   which are the default for alias 'tulip2' overridden by the option 'irq=8'\n\n" \
2354        "   from the command line\n\n" \
2355        "$ modprobe tulip2 irq=2 io=0x210\n" \
2356        "   will load the module 'tulip' with default options 'irq=4 io=0x308 irq=4 io=0x210',\n" \
2357        "   which are the default for alias 'tulip2' overridden by the options 'irq=2 io=0x210'\n\n" \
2358        "   from the command line\n"
2359
2360 #define more_trivial_usage \
2361        "[FILE ...]"
2362 #define more_full_usage \
2363        "View FILE or standard input one screenful at a time"
2364 #define more_example_usage \
2365        "$ dmesg | more\n"
2366
2367 #define mount_trivial_usage \
2368        "[flags] DEVICE NODE [-o options,more-options]"
2369 #define mount_full_usage \
2370        "Mount a filesystem. Filesystem autodetection requires /proc be mounted." \
2371        "\n\nOptions:\n" \
2372        "        -a              Mount all filesystems in fstab\n" \
2373         USE_FEATURE_MTAB_SUPPORT( \
2374        "        -f              Update /etc/mtab, but don't mount\n" \
2375        "        -n              Don't update /etc/mtab\n" \
2376         ) \
2377        "        -r              Read-only mount\n" \
2378        "        -t fs-type      Filesystem type\n" \
2379        "        -w              Read-write mount (default)\n" \
2380        "\n" \
2381        "-o option:\n" \
2382         USE_FEATURE_MOUNT_LOOP( \
2383        "        loop            Ignored (loop devices are autodetected)\n" \
2384         ) \
2385         USE_FEATURE_MOUNT_FLAGS( \
2386        "        [a]sync         Writes are asynchronous / synchronous\n" \
2387        "        [no]atime       Disable / enable updates to inode access times\n" \
2388        "        [no]diratime    Disable / enable atime updates to directories\n" \
2389        "        [no]dev         Allow use of special device files / disallow them\n" \
2390        "        [no]exec        Allow use of executable files / disallow them\n" \
2391        "        [no]suid        Allow set-user-id-root programs / disallow them\n" \
2392        "        [r]shared       Convert [recursively] to a shared subtree\n" \
2393        "        [r]slave        Convert [recursively] to a slave subtree\n" \
2394        "        [r]private      Convert [recursively] to a private subtree\n" \
2395        "        [un]bindable    Make mount point [un]able to be bind mounted\n" \
2396        "        bind            Bind a directory to an additional location\n" \
2397        "        move            Relocate an existing mount point\n" \
2398         ) \
2399        "        remount         Remount a mounted filesystem, changing its flags\n" \
2400        "        ro/rw           Mount for read-only / read-write\n" \
2401        "\n" \
2402        "There are EVEN MORE flags that are specific to each filesystem\n" \
2403        "You'll have to see the written documentation for those filesystems"
2404 #define mount_example_usage \
2405        "$ mount\n" \
2406        "/dev/hda3 on / type minix (rw)\n" \
2407        "proc on /proc type proc (rw)\n" \
2408        "devpts on /dev/pts type devpts (rw)\n" \
2409        "$ mount /dev/fd0 /mnt -t msdos -o ro\n" \
2410        "$ mount /tmp/diskimage /opt -t ext2 -o loop\n" \
2411        "$ mount cd_image.iso mydir\n"
2412 #define mount_notes_usage \
2413        "Returns 0 for success, number of failed mounts for -a, or errno for one mount."
2414
2415 #define mountpoint_trivial_usage \
2416        "[-q] <[-d] DIR | -x DEVICE>"
2417 #define mountpoint_full_usage \
2418        "mountpoint checks if the directory is a mountpoint" \
2419        "\n\nOptions:\n" \
2420        "        -q      Quiet\n" \
2421        "        -d      Print major/minor device number of the filesystem\n" \
2422        "        -x      Print major/minor device number of the blockdevice"
2423 #define mountpoint_example_usage \
2424        "$ mountpoint /proc\n" \
2425        "/proc is not a mountpoint\n" \
2426        "$ mountpoint /sys\n" \
2427        "/sys is a mountpoint\n"
2428
2429 #define mt_trivial_usage \
2430        "[-f device] opcode value"
2431 #define mt_full_usage \
2432        "Control magnetic tape drive operation\n" \
2433        "\nAvailable Opcodes:\n\n" \
2434        "bsf bsfm bsr bss datacompression drvbuffer eof eom erase\n" \
2435        "fsf fsfm fsr fss load lock mkpart nop offline ras1 ras2\n" \
2436        "ras3 reset retension rewind rewoffline seek setblk setdensity\n" \
2437        "setpart tell unload unlock weof wset"
2438
2439 #define mv_trivial_usage \
2440        "[OPTION]... SOURCE DEST\n" \
2441        "or: mv [OPTION]... SOURCE... DIRECTORY"
2442 #define mv_full_usage \
2443        "Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY" \
2444        "\n\nOptions:\n" \
2445        "        -f      Don't prompt before overwriting\n" \
2446        "        -i      Interactive, prompt before overwrite"
2447 #define mv_example_usage \
2448        "$ mv /tmp/foo /bin/bar\n"
2449
2450 #define nameif_trivial_usage \
2451        "[-s] [-c FILE] [{IFNAME MACADDR}]"
2452 #define nameif_full_usage \
2453        "Rename network interface while it in the down state" \
2454        "\n\nOptions:\n" \
2455        "        -c FILE         Use configuration file (default is /etc/mactab)\n" \
2456        "        -s              Use syslog (LOCAL0 facility)\n" \
2457        "        IFNAME MACADDR  new_interface_name interface_mac_address"
2458 #define nameif_example_usage \
2459        "$ nameif -s dmz0 00:A0:C9:8C:F6:3F\n" \
2460        " or\n" \
2461        "$ nameif -c /etc/my_mactab_file\n" \
2462
2463 #if !ENABLE_DESKTOP
2464
2465 #if ENABLE_NC_SERVER || ENABLE_NC_EXTRA
2466 #define NC_OPTIONS_STR "\n\nOptions:"
2467 #else
2468 #define NC_OPTIONS_STR
2469 #endif
2470
2471 #define nc_trivial_usage \
2472         USE_NC_EXTRA("[-iN] [-wN] ")USE_NC_SERVER("[-l] [-p PORT] ") \
2473        "["USE_NC_EXTRA("-f FILENAME|")"IPADDR PORTNUM]"USE_NC_EXTRA(" [-e COMMAND]")
2474 #define nc_full_usage \
2475        "Open a pipe to IP:port" USE_NC_EXTRA(" or file") \
2476         NC_OPTIONS_STR \
2477         USE_NC_EXTRA( \
2478        "\n      -e      Exec rest of command line after connect" \
2479        "\n      -i SECS Delay interval for lines sent" \
2480        "\n      -w SECS Timeout for connect" \
2481        "\n      -f FILE Use file (ala /dev/ttyS0) instead of network" \
2482         ) \
2483         USE_NC_SERVER( \
2484        "\n      -l      Listen mode, for inbound connects" \
2485         USE_NC_EXTRA( \
2486        "\n              (use -l twice with -e for persistent server)") \
2487        "\n      -p PORT Local port number" \
2488         )
2489
2490 #define nc_notes_usage "" \
2491         USE_NC_EXTRA( \
2492        "To use netcat as a terminal emulator on a serial port:\n\n" \
2493        "$ stty 115200 -F /dev/ttyS0\n" \
2494        "$ stty raw -echo -ctlecho && nc -f /dev/ttyS0\n" \
2495         )
2496
2497 #define nc_example_usage \
2498        "$ nc foobar.somedomain.com 25\n" \
2499        "220 foobar ESMTP Exim 3.12 #1 Sat, 15 Apr 2000 00:03:02 -0600\n" \
2500        "help\n" \
2501        "214-Commands supported:\n" \
2502        "214-    HELO EHLO MAIL RCPT DATA AUTH\n" \
2503        "214     NOOP QUIT RSET HELP\n" \
2504        "quit\n" \
2505        "221 foobar closing connection\n"
2506
2507 #else /* DESKTOP nc - much more compatible with nc 1.10 */
2508
2509 #define nc_trivial_usage \
2510        "[-options] hostname port  - connect" \
2511         USE_NC_SERVER("\nnc [-options] -l -p port [hostname] [port]  - listen")
2512 #define nc_full_usage \
2513         USE_NC_SERVER( \
2514        "-l              Listen mode, for inbound connects\n" \
2515         ) \
2516        "-n              Don't do DNS resolution" \
2517      "\n-s addr         Local address" \
2518      "\n-p port         Local port" \
2519      "\n-u              UDP mode" \
2520      "\n-v              Verbose (cumulative: -vv)" \
2521      "\n-w secs         Timeout for connects and final net reads" \
2522         USE_NC_EXTRA( \
2523      "\n-i sec          Delay interval for lines sent" /* ", ports scanned" */ \
2524      "\n-o file         Hex dump of traffic" \
2525      "\n-z              Zero-I/O mode (scanning)" \
2526         ) \
2527      "\n-e prog [args]  Program to exec after connect (must be last)" \
2528 /*   "\n-r              Randomize local and remote ports" */
2529 /*   "\n-g gateway      Source-routing hop point[s], up to 8" */
2530 /*   "\n-G num          Source-routing pointer: 4, 8, 12, ..." */
2531 /*   "\nport numbers can be individual or ranges: lo-hi [inclusive]" */
2532
2533 #endif
2534
2535 #define netstat_trivial_usage \
2536        "[-laentuwxr"USE_FEATURE_NETSTAT_WIDE("W")"]"
2537 #define netstat_full_usage \
2538        "Display networking information" \
2539      "\n\nOptions:" \
2540      "\n        -l      Display listening server sockets" \
2541      "\n        -a      Display all sockets (default: connected)" \
2542      "\n        -e      Display other/more information" \
2543      "\n        -n      Don't resolve names" \
2544      "\n        -t      Tcp sockets" \
2545      "\n        -u      Udp sockets" \
2546      "\n        -w      Raw sockets" \
2547      "\n        -x      Unix sockets" \
2548      "\n        -r      Display routing table" \
2549         USE_FEATURE_NETSTAT_WIDE( \
2550      "\n        -W      Display with no column truncation" \
2551         )
2552
2553 #define nice_trivial_usage \
2554        "[-n ADJUST] [COMMAND [ARG] ...]"
2555 #define nice_full_usage \
2556        "Run a program with modified scheduling priority" \
2557        "\n\nOptions:\n" \
2558        "        -n ADJUST       Adjust the scheduling priority by ADJUST"
2559
2560 #define nmeter_trivial_usage \
2561        "format_string"
2562 #define nmeter_full_usage \
2563        "Monitor system in real time\n\n" \
2564        "Format specifiers:\n" \
2565        "%Nc or %[cN]    Monitor CPU. N - bar size, default 10\n" \
2566        "                (displays: S:system U:user N:niced D:iowait I:irq i:softirq)\n" \
2567        "%[niface]       Monitor network interface 'iface'\n" \
2568        "%m              Monitor allocated memory\n" \
2569        "%[mf]           Monitor free memory\n" \
2570        "%[mt]           Monitor total memory\n" \
2571        "%s              Monitor allocated swap\n" \
2572        "%f              Monitor number of used file descriptors\n" \
2573        "%Ni             Monitor total/specific IRQ rate\n" \
2574        "%x              Monitor context switch rate\n" \
2575        "%p              Monitor forks\n" \
2576        "%[pn]           Monitor # of processes\n" \
2577        "%b              Monitor block io\n" \
2578        "%Nt             Show time (with N decimal points)\n" \
2579        "%Nd             Milliseconds between updates (default=1000)\n" \
2580        "%r              Print <cr> instead of <lf> at EOL"
2581 #define nmeter_example_usage \
2582        "nmeter '%250d%t %20c int %i bio %b mem %m forks%p'"
2583
2584 #define nohup_trivial_usage \
2585        "COMMAND [ARGS]"
2586 #define nohup_full_usage \
2587        "Run a command immune to hangups, with output to a non-tty"
2588 #define nohup_example_usage \
2589        "$ nohup make &"
2590
2591 #define nslookup_trivial_usage \
2592        "[HOST] [SERVER]"
2593 #define nslookup_full_usage \
2594        "Query the nameserver for the IP address of the given HOST\n" \
2595        "optionally using a specified DNS server"
2596 #define nslookup_example_usage \
2597        "$ nslookup localhost\n" \
2598        "Server:     default\n" \
2599        "Address:    default\n" \
2600        "\n" \
2601        "Name:       debian\n" \
2602        "Address:    127.0.0.1\n"
2603
2604 #define od_trivial_usage \
2605        "[-aBbcDdeFfHhIiLlOovXx] [FILE]"
2606 #define od_full_usage \
2607        "Write an unambiguous representation, octal bytes by default, of FILE\n" \
2608        "to standard output. With no FILE, or when FILE is -, read standard input."
2609
2610 #define openvt_trivial_usage \
2611        "VTNUM COMMAND [ARGS...]"
2612 #define openvt_full_usage \
2613        "Start a command on a new virtual terminal"
2614 #define openvt_example_usage \
2615        "openvt 2 /bin/ash\n"
2616
2617 #define passwd_trivial_usage \
2618        "[OPTION] [name]"
2619 #define passwd_full_usage \
2620        "Change a user password. If no name is specified,\n" \
2621        "changes the password for the current user." \
2622        "\n\nOptions:\n" \
2623        "        -a      Define which algorithm shall be used for the password\n" \
2624        "                (choices: des, md5)\n" /* ", sha1)" */ \
2625        "        -d      Delete the password for the specified user account\n" \
2626        "        -l      Locks (disables) the specified user account\n" \
2627        "        -u      Unlocks (re-enables) the specified user account"
2628
2629 #define chpasswd_trivial_usage \
2630         USE_GETOPT_LONG("[--md5|--encrypt]") SKIP_GETOPT_LONG("[-m|-e]")
2631 #define chpasswd_full_usage \
2632        "Read user:password information from stdin\n" \
2633        "and update /etc/passwd accordingly." \
2634        "\n\nOptions:" \
2635         USE_GETOPT_LONG( \
2636        "\n      -e,--encrypt    Supplied passwords are in encrypted form" \
2637        "\n      -m,--md5        Use MD5 encryption instead of DES" \
2638         ) \
2639         SKIP_GETOPT_LONG( \
2640        "\n      -e      Supplied passwords are in encrypted form" \
2641        "\n      -m      Use MD5 encryption instead of DES" \
2642         )
2643
2644 #define patch_trivial_usage \
2645        "[-p num] [-i diff]"
2646 #define patch_full_usage \
2647        "        -p NUM  Strip NUM leading components from file names\n" \
2648        "        -i DIFF Read DIFF instead of stdin"
2649 #define patch_example_usage \
2650        "$ patch -p1 < example.diff\n" \
2651        "$ patch -p0 -i example.diff"
2652
2653 #define pgrep_trivial_usage \
2654        "[-flnovx] pattern"
2655 #define pgrep_full_usage \
2656        "Display process(es) selected by regex pattern" \
2657        "\n\nOptions:\n" \
2658        "        -l      Show command name too\n" \
2659        "        -f      Match against entire command line\n" \
2660        "        -n      Signal the newest process only\n" \
2661        "        -o      Signal the oldest process only\n" \
2662        "        -v      Negate the matching\n" \
2663        "        -x      Match whole name (not substring)"
2664
2665 #if (ENABLE_FEATURE_PIDOF_SINGLE || ENABLE_FEATURE_PIDOF_OMIT)
2666 #define USAGE_PIDOF "Options:"
2667 #else
2668 #define USAGE_PIDOF "\nThis version of pidof accepts no options."
2669 #endif
2670
2671 #define pidof_trivial_usage \
2672        "process-name [OPTION] [process-name ...]"
2673
2674 #define pidof_full_usage \
2675        "List the PIDs of all processes with names that match the\n" \
2676        "names on the command line\n" \
2677         USAGE_PIDOF \
2678         USE_FEATURE_PIDOF_SINGLE( \
2679        "\n      -s      Display only a single PID") \
2680         USE_FEATURE_PIDOF_OMIT( \
2681        "\n      -o PID  Omit given pid") \
2682         USE_FEATURE_PIDOF_OMIT( \
2683        "\n              Use %PPID to omit the parent pid of pidof itself")
2684 #define pidof_example_usage \
2685        "$ pidof init\n" \
2686        "1\n" \
2687         USE_FEATURE_PIDOF_OMIT( \
2688        "$ pidof /bin/sh\n20351 5973 5950\n") \
2689         USE_FEATURE_PIDOF_OMIT( \
2690        "$ pidof /bin/sh -o %PPID\n20351 5950")
2691
2692 #if !ENABLE_FEATURE_FANCY_PING
2693 #define ping_trivial_usage \
2694        "host"
2695 #define ping_full_usage \
2696        "Send ICMP ECHO_REQUEST packets to network hosts"
2697 #define ping6_trivial_usage \
2698        "host"
2699 #define ping6_full_usage \
2700        "Send ICMP ECHO_REQUEST packets to network hosts"
2701 #else
2702 #define ping_trivial_usage \
2703        "[OPTION]... host"
2704 #define ping_full_usage \
2705        "Send ICMP ECHO_REQUEST packets to network hosts" \
2706        "\n\nOptions:\n" \
2707        "        -4, -6          Force IPv4 or IPv6 hostname resolution\n" \
2708        "        -c CNT          Send only CNT pings\n" \
2709        "        -s SIZE         Send SIZE data bytes in packets (default=56)\n" \
2710        "        -I iface/IP     Use interface or IP address as source\n" \
2711        "        -q              Quiet, only displays output at start\n" \
2712        "                        and when finished"
2713 #define ping6_trivial_usage \
2714        "[OPTION]... host"
2715 #define ping6_full_usage \
2716        "Send ICMP ECHO_REQUEST packets to network hosts" \
2717        "\n\nOptions:\n" \
2718        "        -c CNT          Send only CNT pings\n" \
2719        "        -s SIZE         Send SIZE data bytes in packets (default=56)\n" \
2720        "        -I iface/IP     Use interface or IP address as source\n" \
2721        "        -q              Quiet, only displays output at start\n" \
2722        "                        and when finished"
2723 #endif
2724 #define ping_example_usage \
2725        "$ ping localhost\n" \
2726        "PING slag (127.0.0.1): 56 data bytes\n" \
2727        "64 bytes from 127.0.0.1: icmp_seq=0 ttl=255 time=20.1 ms\n" \
2728        "\n" \
2729        "--- debian ping statistics ---\n" \
2730        "1 packets transmitted, 1 packets received, 0% packet loss\n" \
2731        "round-trip min/avg/max = 20.1/20.1/20.1 ms\n"
2732 #define ping6_example_usage \
2733        "$ ping6 ip6-localhost\n" \
2734        "PING ip6-localhost (::1): 56 data bytes\n" \
2735        "64 bytes from ::1: icmp6_seq=0 ttl=64 time=20.1 ms\n" \
2736        "\n" \
2737        "--- ip6-localhost ping statistics ---\n" \
2738        "1 packets transmitted, 1 packets received, 0% packet loss\n" \
2739        "round-trip min/avg/max = 20.1/20.1/20.1 ms\n"
2740
2741 #define pivot_root_trivial_usage \
2742        "NEW_ROOT PUT_OLD"
2743 #define pivot_root_full_usage \
2744        "Move the current root file system to PUT_OLD and make NEW_ROOT\n" \
2745        "the new root file system"
2746
2747 #define pkill_trivial_usage \
2748        "[-l] | [-fnovx] [-signal] pattern"
2749 #define pkill_full_usage \
2750        "Send a signal to process(es) selected by regex pattern" \
2751        "\n\nOptions:\n" \
2752        "        -l      List all signals\n" \
2753        "        -f      Match against entire command line\n" \
2754        "        -n      Signal the newest process only\n" \
2755        "        -o      Signal the oldest process only\n" \
2756        "        -v      Negate the matching\n" \
2757        "        -x      Match whole name (not substring)"
2758
2759 #define poweroff_trivial_usage \
2760        "[-d delay] [-n] [-f]"
2761 #define poweroff_full_usage \
2762        "Halt and shut off power" \
2763        "\n\nOptions:\n" \
2764        "        -d      Delay interval for halting\n" \
2765        "        -n      No call to sync()\n" \
2766        "        -f      Force power off (don't go through init)"
2767
2768 #define printenv_trivial_usage \
2769        "[VARIABLES...]"
2770 #define printenv_full_usage \
2771        "Print all or part of environment.\n" \
2772        "If no environment VARIABLE specified, print them all."
2773
2774 #define printf_trivial_usage \
2775        "FORMAT [ARGUMENT...]"
2776 #define printf_full_usage \
2777        "Format and print ARGUMENT(s) according to FORMAT,\n" \
2778        "where FORMAT controls the output exactly as in C printf"
2779 #define printf_example_usage \
2780        "$ printf \"Val=%d\\n\" 5\n" \
2781        "Val=5\n"
2782
2783
2784 #if ENABLE_DESKTOP
2785
2786 #define ps_trivial_usage \
2787        ""
2788 #define ps_full_usage \
2789        "Report process status" \
2790        "\n\nOptions:" \
2791        "\n      -o col1,col2=header     Select columns for display" \
2792
2793 #else /* !ENABLE_DESKTOP */
2794
2795 #if !defined CONFIG_SELINUX && !ENABLE_FEATURE_PS_WIDE
2796 #define USAGE_PS "\nThis version of ps accepts no options"
2797 #else
2798 #define USAGE_PS "\nOptions:"
2799 #endif
2800
2801 #define ps_trivial_usage \
2802        ""
2803 #define ps_full_usage \
2804        "Report process status\n" \
2805         USAGE_PS \
2806         USE_SELINUX( \
2807        "\n      -Z      Show SE Linux context") \
2808         USE_FEATURE_PS_WIDE( \
2809        "\n      w       Wide output")
2810
2811 #endif /* ENABLE_DESKTOP */
2812
2813 #define ps_example_usage \
2814        "$ ps\n" \
2815        "  PID  Uid      Gid State Command\n" \
2816        "    1 root     root     S init\n" \
2817        "    2 root     root     S [kflushd]\n" \
2818        "    3 root     root     S [kupdate]\n" \
2819        "    4 root     root     S [kpiod]\n" \
2820        "    5 root     root     S [kswapd]\n" \
2821        "  742 andersen andersen S [bash]\n" \
2822        "  743 andersen andersen S -bash\n" \
2823        "  745 root     root     S [getty]\n" \
2824        " 2990 andersen andersen R ps\n"
2825
2826 #define pscan_trivial_usage \
2827        "[-p MIN_PORT] [-P MAX_PORT] [-t TIMEOUT] [-T MIN_RTT] HOST"
2828 #define pscan_full_usage \
2829        "Scan a host, print all open ports" \
2830        "\n\nOptions:" \
2831      "\n        -p      Scan from this port (default 1)" \
2832      "\n        -P      Scan up to this port (default 1024)" \
2833      "\n        -t      Timeout (default 5000 ms)" \
2834      "\n        -T      Minimum rtt (default 5 ms, increase for congested hosts)" \
2835
2836 #define pwd_trivial_usage \
2837        ""
2838 #define pwd_full_usage \
2839        "Print the full filename of the current working directory"
2840 #define pwd_example_usage \
2841        "$ pwd\n" \
2842        "/root\n"
2843
2844 #define raidautorun_trivial_usage \
2845        "DEVICE"
2846 #define raidautorun_full_usage \
2847        "Tell the kernel to automatically search and start RAID arrays"
2848 #define raidautorun_example_usage \
2849        "$ raidautorun /dev/md0"
2850
2851 #define rdate_trivial_usage \
2852        "[-sp] HOST"
2853 #define rdate_full_usage \
2854        "Get and possibly set the system date and time from a remote HOST" \
2855        "\n\nOptions:\n" \
2856        "        -s      Set the system date and time (default)\n" \
2857        "        -p      Print the date and time"
2858
2859 #define readahead_trivial_usage \
2860        "[FILE]..."
2861 #define readahead_full_usage \
2862        "Preload FILE(s) in RAM cache so that subsequent reads for those" \
2863        "files do not block on disk I/O"
2864
2865 #define readlink_trivial_usage \
2866         USE_FEATURE_READLINK_FOLLOW("[-f] ") "FILE"
2867 #define readlink_full_usage \
2868        "Display the value of a symlink" \
2869         USE_FEATURE_READLINK_FOLLOW( \
2870        "\n\nOptions:\n" \
2871        "        -f      Canonicalize by following all symlinks")
2872
2873 #define readprofile_trivial_usage \
2874        "[OPTIONS]..."
2875 #define readprofile_full_usage \
2876        "Options:\n" \
2877        "        -m mapfile      (Default: /boot/System.map)\n" \
2878        "        -p profile      (Default: /proc/profile)\n" \
2879        "        -M mult         Set the profiling multiplier to mult\n" \
2880        "        -i              Print only info about the sampling step\n" \
2881        "        -v              Verbose\n" \
2882        "        -a              Print all symbols, even if count is 0\n" \
2883        "        -b              Print individual histogram-bin counts\n" \
2884        "        -s              Print individual counters within functions\n" \
2885        "        -r              Reset all the counters (root only)\n" \
2886        "        -n              Disable byte order auto-detection"
2887
2888 #define realpath_trivial_usage \
2889        "pathname ..."
2890 #define realpath_full_usage \
2891        "Return the absolute pathnames of given argument"
2892
2893 #define reboot_trivial_usage \
2894        "[-d delay] [-n] [-f]"
2895 #define reboot_full_usage \
2896        "Reboot the system" \
2897        "\n\nOptions:\n" \
2898        "        -d      Delay interval for rebooting\n" \
2899        "        -n      No call to sync()\n" \
2900        "        -f      Force reboot (don't go through init)"
2901
2902 #define renice_trivial_usage \
2903        "{{-n INCREMENT} | PRIORITY} [[-p | -g | -u] ID ...]"
2904 #define renice_full_usage \
2905        "Change priority of running processes" \
2906        "\n\nOptions:\n" \
2907        "        -n      Adjust current nice value (smaller is faster)\n" \
2908        "        -p      Process id(s) (default)\n" \
2909        "        -g      Process group id(s)\n" \
2910        "        -u      Process user name(s) and/or id(s)"
2911
2912 #define reset_trivial_usage \
2913        ""
2914 #define reset_full_usage \
2915        "Reset the screen"
2916
2917 #define resize_trivial_usage \
2918        ""
2919 #define resize_full_usage \
2920        "Resize the screen"
2921
2922 #define restorecon_trivial_usage \
2923        "[-iFnrRv] [-e excludedir]... [-o filename] [-f filename | pathname]"
2924 #define restorecon_full_usage \
2925        "Reset security contexts of files in pathname\n" \
2926        "\n      -i              Ignore files that do not exist" \
2927        "\n      -f file         File with list of files to process. Use - for stdin" \
2928        "\n      -e directory    Directory to exclude" \
2929        "\n      -R,-r           Recurse directories" \
2930        "\n      -n              Don't change any file labels" \
2931        "\n      -o file         Save list of files with incorrect context" \
2932        "\n      -v              Verbose" \
2933        "\n      -vv             Show changed labels" \
2934        "\n      -F              Force reset of context to match file_context" \
2935        "\n                      for customizable files, or the user section," \
2936        "\n                      if it has changed"
2937
2938 #define rm_trivial_usage \
2939        "[OPTION]... FILE..."
2940 #define rm_full_usage \
2941        "Remove (unlink) the FILE(s). You may use '--' to\n" \
2942        "indicate that all following arguments are non-options." \
2943        "\n\nOptions:\n" \
2944        "        -i      Always prompt before removing each destination\n" \
2945        "        -f      Remove existing destinations, never prompt\n" \
2946        "        -r,-R   Remove the contents of directories recursively"
2947 #define rm_example_usage \
2948        "$ rm -rf /tmp/foo\n"
2949
2950 #define rmdir_trivial_usage \
2951        "[OPTION]... DIRECTORY..."
2952 #define rmdir_full_usage \
2953        "Remove the DIRECTORY, if it is empty"
2954 #define rmdir_example_usage \
2955        "# rmdir /tmp/foo\n"
2956
2957 #define rmmod_trivial_usage \
2958        "[OPTION]... [MODULE]..."
2959 #define rmmod_full_usage \
2960        "Unload the specified kernel modules from the kernel" \
2961        "\n\nOptions:\n" \
2962        "        -a      Remove all unused modules (recursively)"
2963 #define rmmod_example_usage \
2964        "$ rmmod tulip\n"
2965
2966 #define route_trivial_usage \
2967        "[{add|del|delete}]"
2968 #define route_full_usage \
2969        "Edit the kernel's routing tables" \
2970        "\n\nOptions:\n" \
2971        "        -n      Dont resolve names\n" \
2972        "        -e      Display other/more information\n" \
2973        "        -A inet" USE_FEATURE_IPV6("{6}") "      Select address family"
2974
2975 #define rpm_trivial_usage \
2976        "-i -q[ildc]p package.rpm"
2977 #define rpm_full_usage \
2978        "Manipulate RPM packages" \
2979        "\n\nOptions:" \
2980        "\n      -i      Install package" \
2981        "\n      -q      Query package" \
2982        "\n      -p      Query uninstalled package" \
2983        "\n      -i      Show information" \
2984        "\n      -l      List contents" \
2985        "\n      -d      List documents" \
2986        "\n      -c      List config files"
2987
2988 #define rpm2cpio_trivial_usage \
2989        "package.rpm"
2990 #define rpm2cpio_full_usage \
2991        "Output a cpio archive of the rpm file"
2992
2993 #define runcon_trivial_usage \
2994        "[-c] [-u USER] [-r ROLE] [-t TYPE] [-l RANGE] COMMAND [args]\n" \
2995        "        runcon CONTEXT COMMAND [args]"
2996 #define runcon_full_usage \
2997        "Run a program in a different security context\n\n" \
2998        "        CONTEXT         Complete security context\n" \
2999         USE_GETOPT_LONG( \
3000        "        -c,--compute    Compute process transition context before modifying\n" \
3001        "        -t,--type=TYPE  Type (for same role as parent)\n" \
3002        "        -u,--user=USER  User identity\n" \
3003        "        -r,--role=ROLE  Role\n" \
3004        "        -l,--range=RNG  Levelrange" \
3005         ) \
3006         SKIP_GETOPT_LONG( \
3007        "        -c      Compute process transition context before modifying\n" \
3008        "        -t TYPE Type (for same role as parent)\n" \
3009        "        -u USER User identity\n" \
3010        "        -r ROLE Role\n" \
3011        "        -l RNG  Levelrange" \
3012         )
3013
3014 #define run_parts_trivial_usage \
3015        "[-t] "USE_FEATURE_RUN_PARTS_FANCY("[-l] ")"[-a ARG] [-u MASK] DIRECTORY"
3016 #define run_parts_full_usage \
3017        "Run a bunch of scripts in a directory" \
3018        "\n\nOptions:\n" \
3019        "        -t      Prints what would be run, but does not actually run anything\n" \
3020        "        -a ARG  Pass ARG as an argument for every program invoked\n" \
3021        "        -u MASK Set the umask to MASK before executing every program" \
3022 USE_FEATURE_RUN_PARTS_FANCY("\n -l      Prints names of all matching files even when they are not executable")
3023
3024 #define run_parts_example_usage \
3025        "$ run-parts -a start /etc/init.d\n" \
3026        "$ run-parts -a stop=now /etc/init.d\n\n" \
3027        "Let's assume you have a script foo/dosomething:\n" \
3028        "#!/bin/sh\n" \
3029        "for i in $*; do eval $i; done; unset i\n" \
3030        "case \"$1\" in\n" \
3031        "start*) echo starting something;;\n" \
3032        "stop*) set -x; shutdown -h $stop;;\n" \
3033        "esac\n\n" \
3034        "Running this yields:\n" \
3035        "$run-parts -a stop=+4m foo/\n" \
3036        "+ shutdown -h +4m"
3037
3038 #define runlevel_trivial_usage \
3039        "[utmp]"
3040 #define runlevel_full_usage \
3041        "Find the current and previous system runlevel.\n\n" \
3042        "If no utmp file exists or if no runlevel record can be found,\n" \
3043        "print \"unknown\""
3044 #define runlevel_example_usage \
3045        "$ runlevel /var/run/utmp\n" \
3046        "N 2"
3047
3048 #define runsv_trivial_usage \
3049        "dir"
3050 #define runsv_full_usage \
3051        "Start and monitor a service and optionally an appendant log service"
3052
3053 #define runsvdir_trivial_usage \
3054        "[-P] dir"
3055 #define runsvdir_full_usage \
3056        "Start a runsv process for each subdirectory"
3057
3058 #define rx_trivial_usage \
3059        "FILE"
3060 #define rx_full_usage \
3061        "Receive a file using the xmodem protocol"
3062 #define rx_example_usage \
3063        "$ rx /tmp/foo\n"
3064
3065 #define sed_trivial_usage \
3066        "[-efinr] pattern [files...]"
3067 #define sed_full_usage \
3068        "Options:\n" \
3069        "        -e script       Add the script to the commands to be executed\n" \
3070        "        -f scriptfile   Add script-file contents to the\n" \
3071        "                        commands to be executed\n" \
3072        "        -i              Edit files in-place\n" \
3073        "        -n              Suppress automatic printing of pattern space\n" \
3074        "        -r              Use extended regular expression syntax\n" \
3075        "\n" \
3076        "If no -e or -f is given, the first non-option argument is taken as the sed\n" \
3077        "script to interpret. All remaining arguments are names of input files; if no\n" \
3078        "input files are specified, then the standard input is read. Source files\n" \
3079        "will not be modified unless -i option is given."
3080
3081 #define sed_example_usage \
3082        "$ echo \"foo\" | sed -e 's/f[a-zA-Z]o/bar/g'\n" \
3083        "bar\n"
3084
3085 #define selinuxenabled_trivial_usage
3086 #define selinuxenabled_full_usage
3087
3088 #define seq_trivial_usage \
3089        "[first [increment]] last"
3090 #define seq_full_usage \
3091        "Print numbers from FIRST to LAST, in steps of INCREMENT.\n" \
3092        "FIRST, INCREMENT default to 1" \
3093        "\n\nArguments:\n" \
3094        "        LAST\n" \
3095        "        FIRST LAST\n" \
3096        "        FIRST INCREMENT LAST"
3097
3098 #define setconsole_trivial_usage \
3099        "[-r|--reset] [DEVICE]"
3100 #define setconsole_full_usage \
3101        "Redirect system console output to DEVICE (default: /dev/tty)" \
3102        "\n\nOptions:\n" \
3103        "        -r      Reset output to /dev/console"
3104
3105 #define setenforce_trivial_usage \
3106        "[Enforcing | Permissive | 1 | 0]"
3107 #define setenforce_full_usage
3108
3109 #define setfiles_trivial_usage \
3110        "[-dnpqsvW] [-e dir]... [-o file] [-r alt_root_path]" \
3111         USE_FEATURE_SETFILES_CHECK_OPTION( \
3112        " [-c policyfile] spec_file" \
3113         ) \
3114        " pathname"
3115
3116 #define setfiles_full_usage \
3117        "Reset file contexts under pathname according to spec_file" \
3118         USE_FEATURE_SETFILES_CHECK_OPTION( \
3119        "\n      -c file Check the validity of the contexts against the specified binary policy" \
3120         ) \
3121        "\n      -d      Show which specification matched each file" \
3122        "\n      -l      Log changes in file labels to syslog" \
3123        "\n      -n      Don't change any file labels" \
3124        "\n      -q      Suppress warnings" \
3125        "\n      -r dir  Use an altenate root path" \
3126        "\n      -e dir  Exclude directory" \
3127        "\n      -F      Force reset of context to match file_context for customizable files" \
3128        "\n      -o file Save list of files with incorrect context" \
3129        "\n      -s      Take a list of files from standard input (instead of command line)" \
3130        "\n      -v      Show changes in file labels, if type or role are changing" \
3131        "\n      -vv     Show changes in file labels, if type, role, or user are changing" \
3132        "\n      -W      Display warnings about entries that had no matching files"
3133
3134 #define setkeycodes_trivial_usage \
3135        "SCANCODE KEYCODE ..."
3136 #define setkeycodes_full_usage \
3137        "Set entries into the kernel's scancode-to-keycode map,\n" \
3138        "allowing unusual keyboards to generate usable keycodes.\n\n" \
3139        "SCANCODE may be either xx or e0xx (hexadecimal),\n" \
3140        "and KEYCODE is given in decimal"
3141 #define setkeycodes_example_usage \
3142        "$ setkeycodes e030 127\n"
3143
3144 #define setlogcons_trivial_usage \
3145        "N"
3146 #define setlogcons_full_usage \
3147        "Redirect the kernel output to console N (0 for current)"
3148
3149 #define setsebool_trivial_usage \
3150        "boolean value"
3151
3152 #define setsebool_full_usage \
3153        "Change boolean setting"
3154
3155 #define setsid_trivial_usage \
3156        "program [arg ...]"
3157 #define setsid_full_usage \
3158        "Run any program in a new session by calling setsid() before\n" \
3159        "exec'ing the rest of its arguments. See setsid(2) for details."
3160
3161 #define lash_trivial_usage \
3162        "[FILE]...\n" \
3163        "or: sh -c command [args]..."
3164 #define lash_full_usage \
3165        "The BusyBox LAme SHell (command interpreter)"
3166 #define lash_notes_usage \
3167        "This command does not yet have proper documentation.\n\n" \
3168        "Use lash just as you would use any other shell. It properly handles pipes,\n" \
3169        "redirects, job control, can be used as the shell for scripts, and has a\n" \
3170        "sufficient set of builtins to do what is needed. It does not (yet) support\n" \
3171        "Bourne Shell syntax. If you need things like \"if-then-else\", \"while\", and such\n" \
3172        "use ash or bash. If you just need a very simple and extremely small shell,\n" \
3173        "this will do the job."
3174
3175 #define last_trivial_usage \
3176        ""
3177 #define last_full_usage \
3178        "Show listing of the last users that logged into the system"
3179
3180 #define sha1sum_trivial_usage \
3181        "[OPTION] [FILEs...]" \
3182         USE_FEATURE_MD5_SHA1_SUM_CHECK("\n   or: sha1sum [OPTION] -c [FILE]")
3183 #define sha1sum_full_usage \
3184        "Print" USE_FEATURE_MD5_SHA1_SUM_CHECK(" or check") " SHA1 checksums.\n" \
3185        "With no FILE, or when FILE is -, read standard input." \
3186        "\n\nOptions:\n" \
3187         USE_FEATURE_MD5_SHA1_SUM_CHECK( \
3188        "        -c      Check SHA1 sums against given list\n" \
3189        "\nThe following two options are useful only when verifying checksums:\n" \
3190        "        -s      Don't output anything, status code shows success\n" \
3191        "        -w      Warn about improperly formatted SHA1 checksum lines")
3192
3193 #define slattach_trivial_usage \
3194        "[-cehmLF] [-s speed] [-p protocol] DEVICEs"
3195 #define slattach_full_usage \
3196        "Attach network interface(s) to serial line(s)\n" \
3197      "\nOptions:" \
3198      "\n        -p      Set protocol (slip, cslip, slip6, clisp6 or adaptive)" \
3199      "\n        -s      Set line speed" \
3200      "\n        -e      Exit after initializing device" \
3201      "\n        -h      Exit when the carrier is lost" \
3202      "\n        -c      Execute a command when the line is hung up" \
3203      "\n        -m      Do NOT initialize the line in raw 8 bits mode" \
3204      "\n        -L      Enable 3-wire operation" \
3205      "\n        -F      Disable RTS/CTS flow control" \
3206
3207 #define sleep_trivial_usage \
3208         USE_FEATURE_FANCY_SLEEP("[") "N" USE_FEATURE_FANCY_SLEEP("]...")
3209 #define sleep_full_usage \
3210         SKIP_FEATURE_FANCY_SLEEP("Pause for N seconds") \
3211         USE_FEATURE_FANCY_SLEEP( \
3212        "Pause for a time equal to the total of the args given, where each arg can\n" \
3213        "have an optional suffix of (s)econds, (m)inutes, (h)ours, or (d)ays")
3214 #define sleep_example_usage \
3215        "$ sleep 2\n" \
3216        "[2 second delay results]\n" \
3217         USE_FEATURE_FANCY_SLEEP( \
3218        "$ sleep 1d 3h 22m 8s\n" \
3219        "[98528 second delay results]\n")
3220
3221 #define sort_trivial_usage \
3222        "[-nru" \
3223         USE_FEATURE_SORT_BIG("gMcszbdfimSTokt] [-o outfile] [-k start[.offset][opts][,end[.offset][opts]] [-t char") \
3224        "] [FILE]..."
3225 #define sort_full_usage \
3226        "Sort lines of text in the specified files" \
3227        "\n\nOptions:\n" \
3228         USE_FEATURE_SORT_BIG( \
3229        "        -b      Ignore leading blanks\n" \
3230        "        -c      Check whether input is sorted\n" \
3231        "        -d      Dictionary order (blank or alphanumeric only)\n" \
3232        "        -f      Ignore case\n" \
3233        "        -g      General numerical sort\n" \
3234        "        -i      Ignore unprintable characters\n" \
3235        "        -k      Sort key\n" \
3236        "        -M      Sort month\n") \
3237        "        -n      Sort numbers\n" \
3238         USE_FEATURE_SORT_BIG( \
3239        "        -o      Output to file\n" \
3240        "        -k      Sort by key\n" \
3241        "        -t      Use key separator other than whitespace\n") \
3242        "        -r      Reverse sort order\n" \
3243         USE_FEATURE_SORT_BIG( \
3244        "        -s      Stable (don't sort ties alphabetically)\n") \
3245        "        -u      Suppress duplicate lines" \
3246         USE_FEATURE_SORT_BIG( \
3247        "\n      -z      Input terminated by nulls, not newlines\n") \
3248         USE_FEATURE_SORT_BIG( \
3249        "        -mST    Ignored for GNU compatibility") \
3250        ""
3251 #define sort_example_usage \
3252        "$ echo -e \"e\\nf\\nb\\nd\\nc\\na\" | sort\n" \
3253        "a\n" \
3254        "b\n" \
3255        "c\n" \
3256        "d\n" \
3257        "e\n" \
3258        "f\n" \
3259         USE_FEATURE_SORT_BIG( \
3260                 "$ echo -e \"c 3\\nb 2\\nd 2\" | $SORT -k 2,2n -k 1,1r\n" \
3261                 "d 2\n" \
3262                 "b 2\n" \
3263                 "c 3\n" \
3264         ) \
3265        ""
3266
3267 #define split_trivial_usage \
3268        "[OPTION] [INPUT [PREFIX]]"
3269 #define split_full_usage \
3270        "Options:" \
3271        "\n      -b n[k|m]       Split by bytes" \
3272        "\n      -l n            Split by lines" \
3273        "\n      -a n            Use n letters as suffix"
3274 #define split_example_usage \
3275        "$ split TODO foo\n" \
3276        "$ cat TODO | split -a 2 -l 2 TODO_\n"
3277
3278 #define start_stop_daemon_trivial_usage \
3279        "[OPTIONS] [" \
3280         USE_GETOPT_LONG("--start|--stop") SKIP_GETOPT_LONG("-S|-K") \
3281        "] ... [-- arguments...]"
3282 #define start_stop_daemon_full_usage \
3283        "Start and stop services" \
3284        "\n\nOptions:" \
3285         USE_GETOPT_LONG( \
3286        "\n      -S,--start              Start" \
3287        "\n      -K,--stop               Stop" \
3288        "\n      -a,--startas pathname   Starts process specified by pathname" \
3289        "\n      -b,--background         Put process into background" \
3290        "\n      -u,--user username|uid  Stop this user's processes" \
3291        "\n      -x,--exec executable    Program to either start or check" \
3292        "\n      -n,--name process-name  Stop processes with this name" \
3293        "\n      -p,--pidfile pid-file   Save or load pid using a pid-file" \
3294        "\n      -m,--make-pidfile       Create the -p file and enter pid in it" \
3295        "\n      -q,--quiet              Quiet" \
3296         USE_FEATURE_START_STOP_DAEMON_FANCY( \
3297        "\n      -o,--oknodo             Exit status 0 if nothing done" \
3298        "\n      -v,--verbose            Verbose" \
3299        "\n      -N,--nicelevel N        Add N to process's nice level" \
3300         ) \
3301        "\n      -s,--signal signal      Signal to send (default TERM)" \
3302        "\n      -c,--chuid user[:[grp]] Change to specified user/group" \
3303         ) \
3304         SKIP_GETOPT_LONG( \
3305        "\n      -S              Start" \
3306        "\n      -K              Stop" \
3307        "\n      -a pathname     Starts process specified by pathname" \
3308        "\n      -b              Put process into background" \
3309        "\n      -u username|uid Stop this user's processes" \
3310        "\n      -x executable   Program to either start or check" \
3311        "\n      -n process-name Stop processes with this name" \
3312        "\n      -p pid-file     Save or load pid using a pid-file" \
3313        "\n      -m              Create the -p file and enter pid in it" \
3314        "\n      -q              Quiet" \
3315         USE_FEATURE_START_STOP_DAEMON_FANCY( \
3316        "\n      -o              Exit status 0 if nothing done" \
3317        "\n      -v              Verbose" \
3318        "\n      -N N            Add N to process's nice level" \
3319         ) \
3320        "\n      -s signal       Signal to send (default TERM)" \
3321        "\n      -c user[:[grp]] Change to specified user/group" \
3322         )
3323
3324 #define stat_trivial_usage \
3325        "[OPTION] FILE..."
3326 #define stat_full_usage \
3327        "Display file (default) or filesystem status" \
3328        "\n\nOptions:\n" \
3329         USE_FEATURE_STAT_FORMAT( \
3330        "        -c fmt  Use the specified format\n") \
3331        "        -f      Display filesystem status\n" \
3332        "        -L,-l   Dereference links\n" \
3333        "        -t      Display info in terse form" \
3334         USE_SELINUX( \
3335        "\n      -Z      Print security context" \
3336         ) \
3337         USE_FEATURE_STAT_FORMAT( \
3338        "\n\nValid format sequences for files:\n" \
3339        " %a     Access rights in octal\n" \
3340        " %A     Access rights in human readable form\n" \
3341        " %b     Number of blocks allocated (see %B)\n" \
3342        " %B     The size in bytes of each block reported by %b\n" \
3343        " %d     Device number in decimal\n" \
3344        " %D     Device number in hex\n" \
3345        " %f     Raw mode in hex\n" \
3346        " %F     File type\n" \
3347        " %g     Group ID of owner\n" \
3348        " %G     Group name of owner\n" \
3349        " %h     Number of hard links\n" \
3350        " %i     Inode number\n" \
3351        " %n     File name\n" \
3352        " %N     Quoted file name with dereference if symlink\n" \
3353        " %o     I/O block size\n" \
3354        " %s     Total size, in bytes\n" \
3355        " %t     Major device type in hex\n" \
3356        " %T     Minor device type in hex\n" \
3357        " %u     User ID of owner\n" \
3358        " %U     User name of owner\n" \
3359        " %x     Time of last access\n" \
3360        " %X     Time of last access as seconds since Epoch\n" \
3361        " %y     Time of last modification\n" \
3362        " %Y     Time of last modification as seconds since Epoch\n" \
3363        " %z     Time of last change\n" \
3364        " %Z     Time of last change as seconds since Epoch\n" \
3365        "\nValid format sequences for file systems:\n" \
3366        " %a     Free blocks available to non-superuser\n" \
3367        " %b     Total data blocks in file system\n" \
3368        " %c     Total file nodes in file system\n" \
3369        " %d     Free file nodes in file system\n" \
3370        " %f     Free blocks in file system\n" \
3371         USE_SELINUX( \
3372        " %C     Security context in SELinux\n" \
3373         ) \
3374        " %i     File System ID in hex\n" \
3375        " %l     Maximum length of filenames\n" \
3376        " %n     File name\n" \
3377        " %s     Block size (for faster transfer)\n" \
3378        " %S     Fundamental block size (for block counts)\n" \
3379        " %t     Type in hex\n" \
3380        " %T     Type in human readable form" \
3381         )
3382
3383 #define strings_trivial_usage \
3384        "[-afo] [-n length] [file ...]"
3385 #define strings_full_usage \
3386        "Display printable strings in a binary file" \
3387        "\n\nOptions:" \
3388        "\n      -a      Scan whole file (default)" \
3389        "\n      -f      Precede strings with filenames" \
3390        "\n      -n N    At least N characters form a string (default 4)" \
3391        "\n      -o      Precede strings with decimal offsets"
3392
3393 #define stty_trivial_usage \
3394        "[-a|g] [-F DEVICE] [SETTING]..."
3395 #define stty_full_usage \
3396        "Without arguments, prints baud rate, line discipline,\n" \
3397        "and deviations from stty sane" \
3398        "\n\nOptions:" \
3399        "\n      -F DEVICE       Open device instead of stdin" \
3400        "\n      -a              Print all current settings in human-readable form" \
3401        "\n      -g              Print in stty-readable form" \
3402        "\n      [SETTING]       See manpage"
3403
3404 #define su_trivial_usage \
3405        "[OPTION]... [-] [username]"
3406 #define su_full_usage \
3407        "Change user id or become root" \
3408        "\n\nOptions:" \
3409        "\n      -p, -m  Preserve environment" \
3410        "\n      -c      Command to pass to 'sh -c'" \
3411        "\n      -s      Shell to use instead of default shell"
3412
3413 #define sulogin_trivial_usage \
3414        "[OPTION]... [tty-device]"
3415 #define sulogin_full_usage \
3416        "Single user login" \
3417        "\n\nOptions:" \
3418        "\n      -t      Timeout"
3419
3420 #define sum_trivial_usage \
3421        "[rs] [files...]"
3422 #define sum_full_usage \
3423        "Checksum and count the blocks in a file" \
3424        "\n\nOptions:\n" \
3425        "        -r      Use BSD sum algorithm (1K blocks)\n" \
3426        "        -s      Use System V sum algorithm (512byte blocks)"
3427
3428 #define sv_trivial_usage \
3429        "[-v] [-w sec] command service..."
3430 #define sv_full_usage \
3431        "Control services monitored by runsv supervisor.\n" \
3432        "Commands (only first character is enough):\n" \
3433        "\n" \
3434        "status: query service status\n" \
3435        "up: if service isn't running, start it. If service stops, restart it\n" \
3436        "once: like 'up', but if service stops, don't restart it\n" \
3437        "down: send TERM and CONT signals. If ./run exits, start ./finish\n" \
3438        "    if it exists. After it stops, do not restart service\n" \
3439        "exit: send TERM and CONT signals to service and log service. If they exit,\n" \
3440        "    runsv exits too\n" \
3441        "pause, cont, hup, alarm, interrupt, quit, 1, 2, term, kill: send\n" \
3442        "STOP, CONT, HUP, ALRM, INT, QUIT, USR1, USR2, TERM, KILL signal to service"
3443
3444 #define svlogd_trivial_usage \
3445        "[-ttv] [-r c] [-R abc] [-l len] [-b buflen] dir..."
3446 #define svlogd_full_usage \
3447        "Continuously read log data from standard input, optionally " \
3448        "filter log messages, and write the data to one or more automatically " \
3449        "rotated logs"
3450
3451 #define swapoff_trivial_usage \
3452        "[-a] [DEVICE]"
3453 #define swapoff_full_usage \
3454        "Stop swapping virtual memory pages on DEVICE" \
3455        "\n\nOptions:\n" \
3456        "        -a      Stop swapping on all swap devices"
3457
3458 #define swapon_trivial_usage \
3459        "[-a] [DEVICE]"
3460 #define swapon_full_usage \
3461        "Start swapping virtual memory pages on DEVICE" \
3462        "\n\nOptions:\n" \
3463        "        -a      Start swapping on all swap devices"
3464
3465 #define switch_root_trivial_usage \
3466        "[-c /dev/console] NEW_ROOT NEW_INIT [ARGUMENTS_TO_INIT]"
3467 #define switch_root_full_usage \
3468        "Use from PID 1 under initramfs to free initramfs, chroot to NEW_ROOT,\n" \
3469        "and exec NEW_INIT" \
3470        "\n\nOptions:\n" \
3471        "        -c      Redirect console to device on new root"
3472
3473 #define sync_trivial_usage \
3474        ""
3475 #define sync_full_usage \
3476        "Write all buffered filesystem blocks to disk"
3477
3478 #define sysctl_trivial_usage \
3479        "[OPTIONS]... [VALUE]..."
3480 #define sysctl_full_usage \
3481        "Configure kernel parameters at runtime" \
3482        "\n\nOptions:\n" \
3483        "        -n      Disable printing of key names\n" \
3484        "        -w      Change sysctl setting\n" \
3485        "        -p FILE Load sysctl settings from FILE (default /etc/sysctl.conf)\n" \
3486        "        -a      Display all values\n" \
3487        "        -A      Display all values in table form"
3488 #define sysctl_example_usage \
3489        "sysctl [-n] variable ...\n" \
3490        "sysctl [-n] -w variable=value ...\n" \
3491        "sysctl [-n] -a\n" \
3492        "sysctl [-n] -p file     (default /etc/sysctl.conf)\n" \
3493        "sysctl [-n] -A\n"
3494
3495 #define syslogd_trivial_usage \
3496        "[OPTION]..."
3497 #define syslogd_full_usage \
3498        "System logging utility.\n" \
3499        "Note that this version of syslogd ignores /etc/syslog.conf." \
3500        "\n\nOptions:" \
3501        "\n      -n              Run in foreground" \
3502        "\n      -O FILE         Log to given file (default=/var/log/messages)" \
3503        "\n      -l n            Set local log level" \
3504        "\n      -S              Smaller logging output" \
3505         USE_FEATURE_ROTATE_LOGFILE( \
3506        "\n      -s SIZE         Max size (KB) before rotate (default=200KB, 0=off)" \
3507        "\n      -b NUM          Number of rotated logs to keep (default=1, max=99, 0=purge)") \
3508         USE_FEATURE_REMOTE_LOG( \
3509        "\n      -R HOST[:PORT]  Log to IP or hostname on PORT (default PORT=514/UDP)" \
3510        "\n      -L              Log locally and via network (default is network only if -R)") \
3511         USE_FEATURE_IPC_SYSLOG( \
3512        "\n      -C[size(KiB)]   Log to shared mem buffer (read it using logread)")
3513         /* NB: -Csize shouldn't have space (because size is optional) */
3514 /*     "\n      -m MIN          Minutes between MARK lines (default=20, 0=off)" */
3515 #define syslogd_example_usage \
3516        "$ syslogd -R masterlog:514\n" \
3517        "$ syslogd -R 192.168.1.1:601\n"
3518
3519 #define tail_trivial_usage \
3520        "[OPTION]... [FILE]..."
3521 #define tail_full_usage \
3522        "Print last 10 lines of each FILE to standard output.\n" \
3523        "With more than one FILE, precede each with a header giving the\n" \
3524        "file name. With no FILE, or when FILE is -, read standard input." \
3525        "\n\nOptions:" \
3526         USE_FEATURE_FANCY_TAIL( \
3527        "\n      -c N[kbm]       Output the last N bytes") \
3528        "\n      -n N[kbm]       Print last N lines instead of last 10" \
3529        "\n      -f              Output data as the file grows" \
3530         USE_FEATURE_FANCY_TAIL( \
3531        "\n      -q              Never output headers giving file names" \
3532        "\n      -s SEC          Wait SEC seconds between reads with -f" \
3533        "\n      -v              Always output headers giving file names" \
3534        "\n\n" \
3535        "If the first character of N (bytes or lines) is a '+', output begins with\n" \
3536        "the Nth item from the start of each file, otherwise, print the last N items\n" \
3537        "in the file. N bytes may be suffixed by k (x1024), b (x512), or m (1024^2)." )
3538 #define tail_example_usage \
3539        "$ tail -n 1 /etc/resolv.conf\n" \
3540        "nameserver 10.0.0.1\n"
3541
3542 #define tar_trivial_usage \
3543        "-[" USE_FEATURE_TAR_CREATE("c") USE_FEATURE_TAR_GZIP("z") \
3544         USE_FEATURE_TAR_BZIP2("j") USE_FEATURE_TAR_LZMA("a") \
3545         USE_FEATURE_TAR_COMPRESS("Z") "xtvO] " \
3546         USE_FEATURE_TAR_FROM("[-X FILE] ") \
3547        "[-f TARFILE] [-C DIR] [FILE(s)] ..."
3548 #define tar_full_usage \
3549        "Create, extract, or list files from a tar file" \
3550        "\n\nOptions:\n" \
3551         USE_FEATURE_TAR_CREATE( \
3552        "        c       Create\n") \
3553        "        x       Extract\n" \
3554        "        t       List\n" \
3555        "\nArchive format selection:\n" \
3556         USE_FEATURE_TAR_GZIP( \
3557        "        z       Filter the archive through gzip\n") \
3558         USE_FEATURE_TAR_BZIP2( \
3559        "        j       Filter the archive through bzip2\n") \
3560         USE_FEATURE_TAR_LZMA( \
3561        "        a       Filter the archive through lzma\n") \
3562         USE_FEATURE_TAR_COMPRESS( \
3563        "        Z       Filter the archive through compress\n") \
3564        "\nFile selection:\n" \
3565        "        f       Name of TARFILE or \"-\" for stdin\n" \
3566        "        O       Extract to stdout\n" \
3567         USE_FEATURE_TAR_FROM( \
3568        "        exclude File to exclude\n" \
3569        "        X       File with names to exclude\n") \
3570        "        C       Change to directory DIR before operation\n" \
3571        "        v       Verbose"
3572 #define tar_example_usage \
3573        "$ zcat /tmp/tarball.tar.gz | tar -xf -\n" \
3574        "$ tar -cf /tmp/tarball.tar /usr/local\n"
3575
3576 #define taskset_trivial_usage \
3577        "[OPTIONS] [mask] [pid | command [arg]...]"
3578 #define taskset_full_usage \
3579        "Set or get CPU affinity" \
3580        "\n\nOptions:\n" \
3581        "        -p      Operate on an existing PID"
3582 #define taskset_example_usage \
3583        "$ taskset 0x7 ./dgemm_test&\n" \
3584        "$ taskset -p 0x1 $!\n" \
3585        "pid 4790's current affinity mask: 7\n" \
3586        "pid 4790's new affinity mask: 1\n" \
3587        "$ taskset 0x7 /bin/sh -c './taskset -p 0x1 $$'\n" \
3588        "pid 6671's current affinity mask: 1\n" \
3589        "pid 6671's new affinity mask: 1\n" \
3590        "$ taskset -p 1\n" \
3591        "pid 1's current affinity mask: 3\n"
3592
3593 #define tee_trivial_usage \
3594        "[OPTION]... [FILE]..."
3595 #define tee_full_usage \
3596        "Copy standard input to each FILE, and also to standard output" \
3597        "\n\nOptions:\n" \
3598        "        -a      Append to the given FILEs, do not overwrite\n" \
3599        "        -i      Ignore interrupt signals (SIGINT)"
3600 #define tee_example_usage \
3601        "$ echo \"Hello\" | tee /tmp/foo\n" \
3602        "$ cat /tmp/foo\n" \
3603        "Hello\n"
3604
3605 #if ENABLE_FEATURE_TELNET_AUTOLOGIN
3606 #define telnet_trivial_usage \
3607        "[-a] [-l USER] HOST [PORT]"
3608 #define telnet_full_usage \
3609        "Connect to remote telnet server" \
3610        "\n\nOptions:\n" \
3611        "        -a      Attempt an automatic login with the USER variable\n" \
3612        "        -l USER Attempt an automatic login with the USER argument\n" \
3613        "        HOST    The official name, alias or the IP address of the\n" \
3614        "                remote host\n" \
3615        "        PORT    The remote port number to connect to. If it is not\n" \
3616        "                specified, the default telnet (23) port is used."
3617 #else
3618 #define telnet_trivial_usage \
3619        "HOST [PORT]"
3620 #define telnet_full_usage \
3621        "Connect to remote telnet server"
3622 #endif
3623
3624 #define telnetd_trivial_usage \
3625        "[OPTION]"
3626 #define telnetd_full_usage \
3627        "Handle incoming telnet connections" \
3628         SKIP_FEATURE_TELNETD_STANDALONE(" via inetd") \
3629        "\n\nOptions:" \
3630        "\n      -l LOGIN        Exec LOGIN on connect" \
3631        "\n      -f issue_file   Display issue_file instead of /etc/issue" \
3632        "\n      -K              Close connection as soon as login exits" \
3633        "\n                      (normally wait until all programs close slave pty)" \
3634         USE_FEATURE_TELNETD_STANDALONE( \
3635        "\n      -p PORT         Port to listen to" \
3636        "\n      -b ADDR         Address to bind to" \
3637        "\n      -F              Run in foreground" \
3638        "\n      -i              Run as inetd subservice" \
3639         )
3640
3641 #define test_trivial_usage \
3642        "EXPRESSION\n  or   [ EXPRESSION ]"
3643 #define test_full_usage \
3644        "Check file types and compares values returning an exit code\n" \
3645        "determined by the value of EXPRESSION"
3646 #define test_example_usage \
3647        "$ test 1 -eq 2\n" \
3648        "$ echo $?\n" \
3649        "1\n" \
3650        "$ test 1 -eq 1\n" \
3651        "$ echo $?\n" \
3652        "0\n" \
3653        "$ [ -d /etc ]\n" \
3654        "$ echo $?\n" \
3655        "0\n" \
3656        "$ [ -d /junk ]\n" \
3657        "$ echo $?\n" \
3658        "1\n"
3659
3660 #define tcpsvd_trivial_usage \
3661        "[-hEv] [-c n] [-C n:msg] [-b n] [-u user] [-l name] ip port prog..."
3662 /* with not-implemented options: */
3663 /*     "[-hpEvv] [-c n] [-C n:msg] [-b n] [-u user] [-l name] [-i dir|-x cdb] [-t sec] ip port prog..." */
3664 #define tcpsvd_full_usage \
3665        "Creates TCP socket, binds it to ip:port and listens on it\n" \
3666        "for incoming connections. For each connection it runs prog." \
3667      "\n" \
3668      "\nip              IP to listen on. '0' = all" \
3669      "\nport            Port to listen on" \
3670      "\nprog [arg]      Program to run" \
3671      "\n-l name         Local hostname (else looks up local hostname in DNS)" \
3672      "\n-u user[:group] Change to user/group after bind" \
3673      "\n-c n            Handle up to n connections simultaneously" \
3674      "\n-b n            Allow a backlog of approximately n TCP SYNs" \
3675      "\n-C n[:msg]      Allow only up to n connections from the same IP" \
3676      "\n                New connections from this IP address are closed" \
3677      "\n                immediately. 'msg' is written to the peer before close" \
3678      "\n-h              Look up peer's hostname" \
3679      "\n-E              Do not set up environment variables" \
3680      "\n-v              Verbose"
3681
3682 #define udpsvd_trivial_usage \
3683        "[-hEv] [-c n] [-u user] [-l name] ip port prog"
3684 #define udpsvd_full_usage \
3685        "Creates UDP socket, binds it to ip:port and listens on it\n" \
3686        "for incoming packets. For each packet it runs prog\n" \
3687        "(redirecting all further packets with same peer ip:port to it)." \
3688      "\n" \
3689      "\nip              IP to listen on. '0' = all" \
3690      "\nport            Port to listen on" \
3691      "\nprog [arg]      Program to run" \
3692      "\n-l name         Local hostname (else looks up local hostname in DNS)" \
3693      "\n-u user[:group] Change to user/group after bind" \
3694      "\n-c n            Handle up to n connections simultaneously" \
3695      "\n-h              Look up peer's hostname" \
3696      "\n-E              Do not set up environment variables" \
3697      "\n-v              Verbose"
3698
3699 #define tftp_trivial_usage \
3700        "[OPTION]... HOST [PORT]"
3701 #define tftp_full_usage \
3702        "Transfer a file from/to tftp server using \"octet\" mode" \
3703        "\n\nOptions:" \
3704        "\n      -l FILE Local FILE" \
3705        "\n      -r FILE Remote FILE" \
3706         USE_FEATURE_TFTP_GET( \
3707        "\n      -g      Get file" \
3708         ) \
3709         USE_FEATURE_TFTP_PUT( \
3710        "\n      -p      Put file" \
3711         ) \
3712         USE_FEATURE_TFTP_BLOCKSIZE( \
3713        "\n      -b SIZE Transfer blocks of SIZE octets" \
3714         )
3715 #define time_trivial_usage \
3716        "[OPTION]... COMMAND [ARGS...]"
3717 #define time_full_usage \
3718        "Run the program COMMAND with arguments ARGS. When COMMAND finishes,\n" \
3719        "COMMAND's resource usage information is displayed." \
3720        "\n\nOptions:\n" \
3721        "        -v      Verbose"
3722
3723 #define top_trivial_usage \
3724        "[-b] [-n count] [-d seconds]"
3725 #define top_full_usage \
3726        "Provide a view of process activity in real time.\n" \
3727        "Read the status of all processes from /proc each <seconds>\n" \
3728        "and show the status for however many processes will fit on the screen."
3729
3730 #define touch_trivial_usage \
3731        "[-c] FILE [FILE ...]"
3732 #define touch_full_usage \
3733        "Update the last-modified date on the given FILE[s]" \
3734        "\n\nOptions:\n" \
3735        "        -c      Do not create any files"
3736 #define touch_example_usage \
3737        "$ ls -l /tmp/foo\n" \
3738        "/bin/ls: /tmp/foo: No such file or directory\n" \
3739        "$ touch /tmp/foo\n" \
3740        "$ ls -l /tmp/foo\n" \
3741        "-rw-rw-r--    1 andersen andersen        0 Apr 15 01:11 /tmp/foo\n"
3742
3743 #define tr_trivial_usage \
3744        "[-cds] STRING1 [STRING2]"
3745 #define tr_full_usage \
3746        "Translate, squeeze, and/or delete characters from\n" \
3747        "standard input, writing to standard output" \
3748        "\n\nOptions:\n" \
3749        "        -c      Take complement of STRING1\n" \
3750        "        -d      Delete input characters coded STRING1\n" \
3751        "        -s      Squeeze multiple output characters of STRING2 into one character"
3752 #define tr_example_usage \
3753        "$ echo \"gdkkn vnqkc\" | tr [a-y] [b-z]\n" \
3754        "hello world\n"
3755
3756 #define traceroute_trivial_usage \
3757        "[-FIldnrv] [-f 1st_ttl] [-m max_ttl] [-p port#] [-q nqueries]\n" \
3758        "        [-s src_addr] [-t tos] [-w wait] [-g gateway] [-i iface]\n" \
3759        "        [-z pausemsecs] host [data size]"
3760 #define traceroute_full_usage \
3761        "Trace the route to \"host\"" \
3762        "\n\nOptions:\n" \
3763        "        -F      Set the don't fragment bit\n" \
3764        "        -I      Use ICMP ECHO instead of UDP datagrams\n" \
3765        "        -l      Display the ttl value of the returned packet\n" \
3766        "        -d      Set SO_DEBUG options to socket\n" \
3767        "        -n      Print hop addresses numerically rather than symbolically\n" \
3768        "        -r      Bypass the normal routing tables and send directly to a host\n" \
3769        "        -v      Verbose\n" \
3770        "        -m max_ttl      Max time-to-live (max number of hops)\n" \
3771        "        -p port#        Base UDP port number used in probes\n" \
3772        "                        (default is 33434)\n" \
3773        "        -q nqueries     Number of probes per 'ttl' (default 3)\n" \
3774        "        -s src_addr     IP address to use as the source address\n" \
3775        "        -t tos          Type-of-service in probe packets (default 0)\n" \
3776        "        -w wait         Time in seconds to wait for a response\n" \
3777        "                        (default 3 sec)\n" \
3778        "        -g              Loose source route gateway (8 max)"
3779
3780 #define true_trivial_usage \
3781        ""
3782 #define true_full_usage \
3783        "Return an exit code of TRUE (0)"
3784 #define true_example_usage \
3785        "$ true\n" \
3786        "$ echo $?\n" \
3787        "0\n"
3788
3789 #define tty_trivial_usage \
3790        ""
3791 #define tty_full_usage \
3792        "Print file name of standard input's terminal" \
3793         USE_INCLUDE_SUSv2( \
3794        "\n\nOptions:\n" \
3795        "        -s      Print nothing, only return exit status")
3796 #define tty_example_usage \
3797        "$ tty\n" \
3798        "/dev/tty2\n"
3799
3800 #define ttysize_trivial_usage \
3801        "[w] [h]"
3802 #define ttysize_full_usage \
3803        "Print dimension(s) of standard input's terminal, on error return 80x25"
3804
3805 #define tune2fs_trivial_usage \
3806        "[-c max-mounts-count] [-e errors-behavior] [-g group] " \
3807        "[-i interval[d|m|w]] [-j] [-J journal-options] [-l] [-s sparse-flag] " \
3808        "[-m reserved-blocks-percent] [-o [^]mount-options[,...]] " \
3809        "[-r reserved-blocks-count] [-u user] [-C mount-count] " \
3810        "[-L volume-label] [-M last-mounted-dir] [-O [^]feature[,...]] " \
3811        "[-T last-check-time] [-U UUID] device"
3812 #define tune2fs_full_usage \
3813        "Adjust filesystem options on ext[23] filesystems"
3814
3815 #define udhcpc_trivial_usage \
3816        "[-Cfbnqtv] [-c CID] [-V VCLS] [-H HOSTNAME] [-i INTERFACE]\n" \
3817        "        [-p pidfile] [-r IP] [-s script]"
3818 #define udhcpc_full_usage \
3819         USE_GETOPT_LONG( \
3820        "        -V,--vendorclass=CLASSID        Set vendor class identifier" \
3821        "\n      -i,--interface=INTERFACE        Interface to use (default: eth0)" \
3822        "\n      -H,-h,--hostname=HOSTNAME       Client hostname" \
3823        "\n      -c,--clientid=CLIENTID  Set client identifier" \
3824        "\n      -C,--clientid-none      Suppress default client identifier" \
3825        "\n      -p,--pidfile=file       Store process ID of daemon in file" \
3826        "\n      -r,--request=IP         IP address to request" \
3827        "\n      -s,--script=file        Run file at dhcp events (default: /usr/share/udhcpc/default.script)" \
3828        "\n      -t,--retries=N          Send up to N request packets"\
3829        "\n      -f,--foreground Run in foreground" \
3830        "\n      -b,--background Background if lease cannot be immediately negotiated" \
3831        "\n      -S,--syslog     Log to syslog too" \
3832        "\n      -n,--now        Exit with failure if lease cannot be immediately negotiated" \
3833        "\n      -q,--quit       Quit after obtaining lease" \
3834        "\n      -R,--release    Release IP on quit" \
3835        "\n      -v,--version    Display version" \
3836         ) \
3837         SKIP_GETOPT_LONG( \
3838        "        -V CLASSID      Set vendor class identifier" \
3839        "\n      -i INTERFACE    Interface to use (default: eth0)" \
3840        "\n      -H,-h HOSTNAME  Client hostname" \
3841        "\n      -c CLIENTID     Set client identifier" \
3842        "\n      -C              Suppress default client identifier" \
3843        "\n      -p file         Store process ID of daemon in file" \
3844        "\n      -r IP           IP address to request" \
3845        "\n      -s file         Run file at dhcp events (default: /usr/share/udhcpc/default.script)" \
3846        "\n      -t N            Send up to N request packets"\
3847        "\n      -f              Run in foreground" \
3848        "\n      -b              Background if lease cannot be immediately negotiated" \
3849        "\n      -S              Log to syslog too" \
3850        "\n      -n              Exit with failure if lease cannot be immediately negotiated" \
3851        "\n      -q              Quit after obtaining lease" \
3852        "\n      -R              Release IP on quit" \
3853        "\n      -v              Display version" \
3854         )
3855
3856 #define udhcpd_trivial_usage \
3857        "[-fS] [configfile]" \
3858
3859 #define udhcpd_full_usage \
3860        "DHCP server" \
3861        "\n      -f      Run in foreground" \
3862        "\n      -S      Log to syslog too"
3863
3864 #define umount_trivial_usage \
3865        "[flags] FILESYSTEM|DIRECTORY"
3866 #define umount_full_usage \
3867        "Unmount file systems" \
3868        "\n\nOptions:\n" \
3869         USE_FEATURE_UMOUNT_ALL( \
3870        "\n      -a      Unmount all file systems" USE_FEATURE_MTAB_SUPPORT(" in /etc/mtab")) \
3871         USE_FEATURE_MTAB_SUPPORT( \
3872        "\n      -n      Don't erase /etc/mtab entries") \
3873        "\n      -r      Try to remount devices as read-only if mount is busy" \
3874        "\n      -l      Lazy umount (detach filesystem)" \
3875        "\n      -f      Force umount (i.e., unreachable NFS server)" \
3876         USE_FEATURE_MOUNT_LOOP( \
3877        "\n      -D      Do not free loop device (if a loop device has been used)")
3878 #define umount_example_usage \
3879        "$ umount /dev/hdc1\n"
3880
3881 #define uname_trivial_usage \
3882        "[OPTION]..."
3883 #define uname_full_usage \
3884        "Print certain system information. With no OPTION, same as -s." \
3885        "\n\nOptions:\n" \
3886        "        -a      Print all information\n" \
3887        "        -m      The machine (hardware) type\n" \
3888        "        -n      Print machine's hostname\n" \
3889        "        -r      Print OS release\n" \
3890        "        -s      Print OS name\n" \
3891        "        -p      Print host processor type\n" \
3892        "        -v      Print OS version"
3893 #define uname_example_usage \
3894        "$ uname -a\n" \
3895        "Linux debian 2.4.23 #2 Tue Dec 23 17:09:10 MST 2003 i686 GNU/Linux\n"
3896
3897 #define uncompress_trivial_usage \
3898        "[-c] [-f] [name...]"
3899 #define uncompress_full_usage \
3900        "Uncompress .Z file[s]" \
3901        "\n\nOptions:\n" \
3902        "        -c      Extract to stdout\n" \
3903        "        -f      Force overwrite an existing file"
3904
3905 #define unexpand_trivial_usage \
3906        "[-f][-a][-t NUM] [FILE|-]"
3907 #define unexpand_full_usage \
3908        "Convert spaces to tabs, writing to standard output." \
3909        "\n\nOptions:" \
3910        "\n      -a" USE_FEATURE_UNEXPAND_LONG_OPTIONS(",--all") \
3911        "        Convert all blanks" \
3912        "\n      -f" USE_FEATURE_UNEXPAND_LONG_OPTIONS(",--first-only") \
3913        "        Convert only leading sequences of blanks" \
3914        "\n      -t" USE_FEATURE_UNEXPAND_LONG_OPTIONS(",--tabs=N") \
3915        "        Tabstops every N chars"
3916
3917 #define uniq_trivial_usage \
3918        "[-fscdu]... [INPUT [OUTPUT]]"
3919 #define uniq_full_usage \
3920        "Discard all but one of successive identical lines from INPUT\n" \
3921        "(or standard input), writing to OUTPUT (or standard output)" \
3922        "\n\nOptions:\n" \
3923        "        -c      Prefix lines by the number of occurrences\n" \
3924        "        -d      Only print duplicate lines\n" \
3925        "        -u      Only print unique lines\n" \
3926        "        -f N    Skip the first N fields\n" \
3927        "        -s N    Skip the first N chars (after any skipped fields)"
3928 #define uniq_example_usage \
3929        "$ echo -e \"a\\na\\nb\\nc\\nc\\na\" | sort | uniq\n" \
3930        "a\n" \
3931        "b\n" \
3932        "c\n"
3933
3934 #define unix2dos_trivial_usage \
3935        "[option] [FILE]"
3936 #define unix2dos_full_usage \
3937        "Convert FILE from unix format to dos format. When no option\n" \
3938        "is given, the input is converted to the opposite output format.\n" \
3939        "When no file is given, use stdin/stdout." \
3940        "\n\nOptions:\n" \
3941        "        -u      Output will be in UNIX format\n" \
3942        "        -d      Output will be in DOS format"
3943
3944 #define unzip_trivial_usage \
3945        "[-opts[modifiers]] file[.zip] [list] [-x xlist] [-d exdir]"
3946 #define unzip_full_usage \
3947        "Extract files from ZIP archives" \
3948        "\n\nOptions:\n" \
3949        "        -l      List archive contents (with -q for short form)\n" \
3950        "        -n      Never overwrite existing files (default)\n" \
3951        "        -o      Overwrite files without prompting\n" \
3952        "        -p      Send output to stdout\n" \
3953        "        -q      Quiet\n" \
3954        "        -x      Exclude these files\n" \
3955        "        -d      Extract files into this directory"
3956
3957 #define uptime_trivial_usage \
3958        ""
3959 #define uptime_full_usage \
3960        "Display the time since the last boot"
3961 #define uptime_example_usage \
3962        "$ uptime\n" \
3963        "  1:55pm  up  2:30, load average: 0.09, 0.04, 0.00\n"
3964
3965 #define usleep_trivial_usage \
3966        "N"
3967 #define usleep_full_usage \
3968        "Pause for N microseconds"
3969 #define usleep_example_usage \
3970        "$ usleep 1000000\n" \
3971        "[pauses for 1 second]\n"
3972
3973 #define uudecode_trivial_usage \
3974        "[-o outfile] [infile]"
3975 #define uudecode_full_usage \
3976        "Uudecode a file\n" \
3977        "NB: finds outfile name in uuencoded source unless -o is given"
3978 #define uudecode_example_usage \
3979        "$ uudecode -o busybox busybox.uu\n" \
3980        "$ ls -l busybox\n" \
3981        "-rwxr-xr-x   1 ams      ams        245264 Jun  7 21:35 busybox\n"
3982
3983 #define uuencode_trivial_usage \
3984        "[-m] [infile] stored_filename"
3985 #define uuencode_full_usage \
3986        "Uuencode a file to stdout" \
3987        "\n\nOptions:\n" \
3988        "        -m      Use base64 encoding per RFC1521"
3989 #define uuencode_example_usage \
3990        "$ uuencode busybox busybox\n" \
3991        "begin 755 busybox\n" \
3992        "<encoded file snipped>\n" \
3993        "$ uudecode busybox busybox > busybox.uu\n" \
3994        "$\n"
3995
3996 #define vconfig_trivial_usage \
3997        "COMMAND [OPTIONS] ..."
3998 #define vconfig_full_usage \
3999        "Create and remove virtual ethernet devices" \
4000        "\n\nOptions:\n" \
4001        "        add             [interface-name] [vlan_id]\n" \
4002        "        rem             [vlan-name]\n" \
4003        "        set_flag        [interface-name] [flag-num] [0 | 1]\n" \
4004        "        set_egress_map  [vlan-name] [skb_priority] [vlan_qos]\n" \
4005        "        set_ingress_map [vlan-name] [skb_priority] [vlan_qos]\n" \
4006        "        set_name_type   [name-type]"
4007
4008 #define vi_trivial_usage \
4009        "[OPTION] [FILE]..."
4010 #define vi_full_usage \
4011        "Edit FILE" \
4012        "\n\nOptions:\n" \
4013        "        -R      Read-only - do not write to the file"
4014
4015 #define vlock_trivial_usage \
4016        "[OPTIONS]"
4017 #define vlock_full_usage \
4018        "Lock a virtual terminal. A password is required to unlock." \
4019        "\n\nOptions:\n" \
4020        "        -a      Lock all VTs"
4021
4022 #define watch_trivial_usage \
4023        "[-n seconds] [-t] COMMAND..."
4024 #define watch_full_usage \
4025        "Execute a program periodically" \
4026        "\n\nOptions:\n" \
4027        "        -n      Loop period in seconds (default 2)\n" \
4028        "        -t      Don't print header"
4029 #define watch_example_usage \
4030        "$ watch date\n" \
4031        "Mon Dec 17 10:31:40 GMT 2000\n" \
4032        "Mon Dec 17 10:31:42 GMT 2000\n" \
4033        "Mon Dec 17 10:31:44 GMT 2000"
4034
4035 #define watchdog_trivial_usage \
4036        "[-t N[ms]] [-F] DEV"
4037 #define watchdog_full_usage \
4038        "Periodically write to watchdog device DEV" \
4039        "\n\nOptions:" \
4040      "\n        -t N    Timer period (default 30)" \
4041      "\n        -F      Run in foreground" \
4042      "\n" \
4043      "\nUse -t 500ms to specify period in milliseconds"
4044
4045 #define wc_trivial_usage \
4046        "[OPTION]... [FILE]..."
4047 #define wc_full_usage \
4048        "Print line, word, and byte counts for each FILE, and a total line if\n" \
4049        "more than one FILE is specified. With no FILE, read standard input." \
4050        "\n\nOptions:\n" \
4051        "        -c      Print the byte counts\n" \
4052        "        -l      Print the newline counts\n" \
4053        "        -L      Print the length of the longest line\n" \
4054        "        -w      Print the word counts"
4055 #define wc_example_usage \
4056        "$ wc /etc/passwd\n" \
4057        "     31      46    1365 /etc/passwd\n"
4058
4059 #define wget_trivial_usage \
4060         USE_GETOPT_LONG( \
4061        "[-c|--continue] [-s|--spider] [-q|--quiet] [-O|--output-document file]\n" \
4062        "        [--header 'header: value'] [-Y|--proxy on/off] [-P DIR]\n" \
4063        "        [-U|--user-agent agent] url" \
4064         ) \
4065         SKIP_GETOPT_LONG( \
4066        "[-csq] [-O file] [-Y on/off] [-P DIR] [-U agent] url" \
4067         )
4068 #define wget_full_usage \
4069        "Retrieve files via HTTP or FTP" \
4070        "\n\nOptions:\n" \
4071        "        -s      Spider mode - only check file existence\n" \
4072        "        -c      Continue retrieval of aborted transfer\n" \
4073        "        -q      Quiet\n" \
4074        "        -P      Set directory prefix to DIR\n" \
4075        "        -O      Save to filename ('-' for stdout)\n" \
4076        "        -U      Adjust 'User-Agent' field\n" \
4077        "        -Y      Use proxy ('on' or 'off')"
4078
4079 #define which_trivial_usage \
4080        "[COMMAND ...]"
4081 #define which_full_usage \
4082        "Locate a COMMAND"
4083 #define which_example_usage \
4084        "$ which login\n" \
4085        "/bin/login\n"
4086
4087 #define who_trivial_usage \
4088        " "
4089 #define who_full_usage \
4090        "Print the current user names and related information"
4091
4092 #define whoami_trivial_usage \
4093        ""
4094 #define whoami_full_usage \
4095        "Print the user name associated with the current effective user id"
4096
4097 #define xargs_trivial_usage \
4098        "[OPTIONS] [COMMAND] [ARGS...]"
4099 #define xargs_full_usage \
4100        "Execute COMMAND on every item given by standard input" \
4101        "\n\nOptions:\n" \
4102         USE_FEATURE_XARGS_SUPPORT_CONFIRMATION( \
4103        "        -p      Prompt the user about whether to run each command\n") \
4104        "        -r      Do not run command for empty read lines\n" \
4105         USE_FEATURE_XARGS_SUPPORT_TERMOPT( \
4106        "        -x      Exit if the size is exceeded\n") \
4107         USE_FEATURE_XARGS_SUPPORT_ZERO_TERM( \
4108        "        -0      Input filenames are terminated by a null character\n") \
4109        "        -t      Print the command line on stderr before executing it"
4110 #define xargs_example_usage \
4111        "$ ls | xargs gzip\n" \
4112        "$ find . -name '*.c' -print | xargs rm\n"
4113
4114 #define yes_trivial_usage \
4115        "[OPTION]... [STRING]..."
4116 #define yes_full_usage \
4117        "Repeatedly output a line with all specified STRING(s), or 'y'"
4118
4119 #define zcat_trivial_usage \
4120        "FILE"
4121 #define zcat_full_usage \
4122        "Uncompress to stdout"
4123
4124 #define zcip_trivial_usage \
4125        "[OPTIONS] ifname script"
4126 #define zcip_full_usage \
4127        "Manage a ZeroConf IPv4 link-local address" \
4128        "\n\nOptions:\n" \
4129        "        -f              Run in foreground\n" \
4130        "        -q              Quit after address (no daemon)\n" \
4131        "        -r 169.254.x.x  Request this address first\n" \
4132        "        -v              Verbose"
4133
4134 #endif /* __BB_USAGE_H__ */