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