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