accda3341401c6643cdc85e17b48122d636612f4
[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  * or
10  *    |<5 spaces>"\ntext with tabs"....
11  */
12 #ifndef BB_USAGE_H
13 #define BB_USAGE_H 1
14
15
16 #define NOUSAGE_STR "\b"
17
18 #define acpid_trivial_usage \
19        "[-d] [-c CONFDIR] [-l LOGFILE] [-e PROC_EVENT_FILE] [EVDEV_EVENT_FILE...]"
20 #define acpid_full_usage "\n\n" \
21        "Listen to ACPI events and spawn specific helpers on event arrival\n" \
22      "\nOptions:" \
23      "\n        -d      Do not daemonize and log to stderr" \
24      "\n        -c DIR  Config directory [/etc/acpi]" \
25      "\n        -e FILE /proc event file [/proc/acpi/event]" \
26      "\n        -l FILE Log file [/var/log/acpid]" \
27         IF_FEATURE_ACPID_COMPAT( \
28      "\n\nAccept and ignore compatibility options -g -m -s -S -v" \
29         )
30
31 #define acpid_example_usage \
32        "# acpid -l /var/log/my-acpi-log\n" \
33        "# acpid -d /dev/input/event*\n"
34
35 #define addgroup_trivial_usage \
36        "[-g GID] " IF_FEATURE_ADDUSER_TO_GROUP("[user_name] ") "group_name"
37 #define addgroup_full_usage "\n\n" \
38        "Add a group " IF_FEATURE_ADDUSER_TO_GROUP("or add a user to a group") "\n" \
39      "\nOptions:" \
40      "\n        -g GID  Group id" \
41      "\n        -S      Create a system group" \
42
43 #define adduser_trivial_usage \
44        "[OPTIONS] user_name"
45 #define adduser_full_usage "\n\n" \
46        "Add a user\n" \
47      "\nOptions:" \
48      "\n        -h DIR          Home directory" \
49      "\n        -g GECOS        GECOS field" \
50      "\n        -s SHELL        Login shell" \
51      "\n        -G GROUP        Add user to existing group" \
52      "\n        -S              Create a system user" \
53      "\n        -D              Do not assign a password" \
54      "\n        -H              Do not create home directory" \
55      "\n        -u UID          User id" \
56
57 #define adjtimex_trivial_usage \
58        "[-q] [-o offset] [-f frequency] [-p timeconstant] [-t tick]"
59 #define adjtimex_full_usage "\n\n" \
60        "Read and optionally set system timebase parameters. See adjtimex(2).\n" \
61      "\nOptions:" \
62      "\n        -q              Quiet" \
63      "\n        -o offset       Time offset, microseconds" \
64      "\n        -f frequency    Frequency adjust, integer kernel units (65536 is 1ppm)" \
65      "\n                        (positive values make clock run faster)" \
66      "\n        -t tick         Microseconds per tick, usually 10000" \
67      "\n        -p timeconstant" \
68
69 #define ar_trivial_usage \
70        "[-o] [-v] [-p] [-t] [-x] ARCHIVE FILES"
71 #define ar_full_usage "\n\n" \
72        "Extract or list FILES from an ar archive\n" \
73      "\nOptions:" \
74      "\n        -o      Preserve original dates" \
75      "\n        -p      Extract to stdout" \
76      "\n        -t      List" \
77      "\n        -x      Extract" \
78      "\n        -v      Verbose" \
79
80 #define arp_trivial_usage \
81      "\n[-vn]   [-H type] [-i if] -a [hostname]" \
82      "\n[-v]              [-i if] -d hostname [pub]" \
83      "\n[-v]    [-H type] [-i if] -s hostname hw_addr [temp]" \
84      "\n[-v]    [-H type] [-i if] -s hostname hw_addr [netmask nm] pub" \
85      "\n[-v]    [-H type] [-i if] -Ds hostname ifa [netmask nm] pub"
86 #define arp_full_usage "\n\n" \
87        "Manipulate ARP cache\n" \
88      "\nOptions:" \
89        "\n      -a              Display (all) hosts" \
90        "\n      -s              Set new ARP entry" \
91        "\n      -d              Delete a specified entry" \
92        "\n      -v              Verbose" \
93        "\n      -n              Don't resolve names" \
94        "\n      -i IF           Network interface" \
95        "\n      -D              Read <hwaddr> from given device" \
96        "\n      -A, -p AF       Protocol family" \
97        "\n      -H HWTYPE       Hardware address type" \
98
99 #define arping_trivial_usage \
100        "[-fqbDUA] [-c count] [-w timeout] [-I dev] [-s sender] target"
101 #define arping_full_usage "\n\n" \
102        "Send ARP requests/replies\n" \
103      "\nOptions:" \
104      "\n        -f              Quit on first ARP reply" \
105      "\n        -q              Quiet" \
106      "\n        -b              Keep broadcasting, don't go unicast" \
107      "\n        -D              Duplicated address detection mode" \
108      "\n        -U              Unsolicited ARP mode, update your neighbors" \
109      "\n        -A              ARP answer mode, update your neighbors" \
110      "\n        -c N            Stop after sending N ARP requests" \
111      "\n        -w timeout      Time to wait for ARP reply, in seconds" \
112      "\n        -I dev          Interface to use (default eth0)" \
113      "\n        -s sender       Sender IP address" \
114      "\n        target          Target IP address" \
115
116 #define sh_trivial_usage NOUSAGE_STR
117 #define sh_full_usage ""
118 #define ash_trivial_usage NOUSAGE_STR
119 #define ash_full_usage ""
120 #define hush_trivial_usage NOUSAGE_STR
121 #define hush_full_usage ""
122 #define msh_trivial_usage NOUSAGE_STR
123 #define msh_full_usage ""
124 #define bbsh_trivial_usage \
125        "[FILE]...\n" \
126        "or: bbsh -c command [args]..."
127 #define bbsh_full_usage "\n\n" \
128        "The bbsh shell (command interpreter)"
129
130 #define awk_trivial_usage \
131        "[OPTIONS] [AWK_PROGRAM] [FILE]..."
132 #define awk_full_usage "\n\n" \
133        "Options:" \
134      "\n        -v VAR=VAL      Set variable" \
135      "\n        -F SEP          Use SEP as field separator" \
136      "\n        -f FILE         Read program from file" \
137
138 #define basename_trivial_usage \
139        "FILE [SUFFIX]"
140 #define basename_full_usage "\n\n" \
141        "Strip directory path and suffixes from FILE.\n" \
142        "If specified, also remove any trailing SUFFIX."
143 #define basename_example_usage \
144        "$ basename /usr/local/bin/foo\n" \
145        "foo\n" \
146        "$ basename /usr/local/bin/\n" \
147        "bin\n" \
148        "$ basename /foo/bar.txt .txt\n" \
149        "bar"
150
151 #define fbsplash_trivial_usage \
152        "-s IMGFILE [-c] [-d DEV] [-i INIFILE] [-f CMD]"
153 #define fbsplash_full_usage "\n\n" \
154        "Options:\n" \
155      "\n        -s      Image" \
156      "\n        -c      Hide cursor" \
157      "\n        -d      Framebuffer device (default /dev/fb0)" \
158      "\n        -i      Config file (var=value):" \
159      "\n                        BAR_LEFT,BAR_TOP,BAR_WIDTH,BAR_HEIGHT" \
160      "\n                        BAR_R,BAR_G,BAR_B" \
161      "\n        -f      Control pipe (else exit after drawing image)" \
162      "\n                        commands: 'NN' (% for progress bar) or 'exit'" \
163
164 #define brctl_trivial_usage \
165        "COMMAND [BRIDGE [INTERFACE]]"
166 #define brctl_full_usage "\n\n" \
167        "Manage ethernet bridges.\n" \
168      "\nCommands:" \
169         IF_FEATURE_BRCTL_SHOW( \
170      "\n        show                    Show a list of bridges" \
171         ) \
172      "\n        addbr BRIDGE            Create BRIDGE" \
173      "\n        delbr BRIDGE            Delete BRIDGE" \
174      "\n        addif BRIDGE IFACE      Add IFACE to BRIDGE" \
175      "\n        delif BRIDGE IFACE      Delete IFACE from BRIDGE" \
176         IF_FEATURE_BRCTL_FANCY( \
177      "\n        setageing BRIDGE TIME           Set ageing time" \
178      "\n        setfd BRIDGE TIME               Set bridge forward delay" \
179      "\n        sethello BRIDGE TIME            Set hello time" \
180      "\n        setmaxage BRIDGE TIME           Set max message age" \
181      "\n        setpathcost BRIDGE COST         Set path cost" \
182      "\n        setportprio BRIDGE PRIO         Set port priority" \
183      "\n        setbridgeprio BRIDGE PRIO       Set bridge priority" \
184      "\n        stp BRIDGE [1|0]                STP on/off" \
185         ) \
186
187 #define bunzip2_trivial_usage \
188        "[OPTIONS] [FILE]"
189 #define bunzip2_full_usage "\n\n" \
190        "Uncompress FILE (or standard input if FILE is '-' or omitted)\n" \
191      "\nOptions:" \
192      "\n        -c      Write to standard output" \
193      "\n        -f      Force" \
194
195 #define bzip2_trivial_usage \
196        "[OPTIONS] [FILE]..."
197 #define bzip2_full_usage "\n\n" \
198        "Compress FILE(s) with bzip2 algorithm.\n" \
199        "When FILE is '-' or unspecified, reads standard input. Implies -c.\n" \
200      "\nOptions:" \
201      "\n        -c      Write to standard output" \
202      "\n        -d      Decompress" \
203      "\n        -f      Force" \
204      "\n        -1..-9  Compression level" \
205
206 #define busybox_notes_usage \
207        "Hello world!\n"
208
209 #define lzop_trivial_usage \
210        "[-cfvd123456789CF] [FILE]..."
211 #define lzop_full_usage "\n\n" \
212        "        -c      Write to standard output" \
213      "\n        -f      Force" \
214      "\n        -v      Verbose" \
215      "\n        -d      Decompress" \
216      "\n        -F      Don't store or verify checksum" \
217      "\n        -C      Also write checksum of compressed block" \
218      "\n        -1..9   Compression level" \
219
220 #define lzopcat_trivial_usage \
221        "[-vCF] [FILE]..."
222 #define lzopcat_full_usage "\n\n" \
223        "        -v      Verbose" \
224      "\n        -F      Don't store or verify checksum" \
225
226 #define unlzop_trivial_usage \
227        "[-cfvCF] [FILE]..."
228 #define unlzop_full_usage "\n\n" \
229        "        -c      Write to standard output" \
230      "\n        -f      Force" \
231      "\n        -v      Verbose" \
232      "\n        -F      Don't store or verify checksum" \
233
234 #define bzcat_trivial_usage \
235        "FILE"
236 #define bzcat_full_usage "\n\n" \
237        "Uncompress to stdout"
238
239 #define unlzma_trivial_usage \
240        "[OPTIONS] [FILE]"
241 #define unlzma_full_usage "\n\n" \
242        "Uncompress FILE (or standard input if FILE is '-' or omitted)\n" \
243      "\nOptions:" \
244      "\n        -c      Write to standard output" \
245      "\n        -f      Force" \
246
247 #define lzmacat_trivial_usage \
248        "FILE"
249 #define lzmacat_full_usage "\n\n" \
250        "Uncompress to stdout"
251
252 #define cal_trivial_usage \
253        "[-jy] [[month] year]"
254 #define cal_full_usage "\n\n" \
255        "Display a calendar\n" \
256      "\nOptions:" \
257      "\n        -j      Use julian dates" \
258      "\n        -y      Display the entire year" \
259
260 #define cat_trivial_usage \
261        "[-u] [FILE]..."
262 #define cat_full_usage "\n\n" \
263        "Concatenate FILE(s) and print them to stdout\n" \
264      "\nOptions:" \
265      "\n        -u      Use unbuffered i/o (ignored)" \
266
267 #define cat_example_usage \
268        "$ cat /proc/uptime\n" \
269        "110716.72 17.67"
270
271 #define catv_trivial_usage \
272        "[-etv] [FILE]..."
273 #define catv_full_usage "\n\n" \
274        "Display nonprinting characters as ^x or M-x\n" \
275      "\nOptions:" \
276      "\n        -e      End each line with $" \
277      "\n        -t      Show tabs as ^I" \
278      "\n        -v      Don't use ^x or M-x escapes" \
279
280 #define chat_trivial_usage \
281        "EXPECT [SEND [EXPECT [SEND...]]]"
282 #define chat_full_usage "\n\n" \
283        "Useful for interacting with a modem connected to stdin/stdout.\n" \
284        "A script consists of one or more \"expect-send\" pairs of strings,\n" \
285        "each pair is a pair of arguments. Example:\n" \
286        "chat '' ATZ OK ATD123456 CONNECT '' ogin: pppuser word: ppppass '~'" \
287
288 #define chattr_trivial_usage \
289        "[-R] [-+=AacDdijsStTu] [-v version] files..."
290 #define chattr_full_usage "\n\n" \
291        "Change file attributes on an ext2 fs\n" \
292      "\nModifiers:" \
293      "\n        -       Remove attributes" \
294      "\n        +       Add attributes" \
295      "\n        =       Set attributes" \
296      "\nAttributes:" \
297      "\n        A       Don't track atime" \
298      "\n        a       Append mode only" \
299      "\n        c       Enable compress" \
300      "\n        D       Write dir contents synchronously" \
301      "\n        d       Do not backup with dump" \
302      "\n        i       Cannot be modified (immutable)" \
303      "\n        j       Write all data to journal first" \
304      "\n        s       Zero disk storage when deleted" \
305      "\n        S       Write file contents synchronously" \
306      "\n        t       Disable tail-merging of partial blocks with other files" \
307      "\n        u       Allow file to be undeleted" \
308      "\nOptions:" \
309      "\n        -R      Recursively list subdirectories" \
310      "\n        -v      Set the file's version/generation number" \
311
312 #define chcon_trivial_usage \
313        "[OPTIONS] CONTEXT FILE..." \
314        "\n      chcon [OPTIONS] [-u USER] [-r ROLE] [-l RANGE] [-t TYPE] FILE..." \
315         IF_FEATURE_CHCON_LONG_OPTIONS( \
316        "\n      chcon [OPTIONS] --reference=RFILE FILE..." \
317         )
318 #define chcon_full_usage "\n\n" \
319        "Change the security context of each FILE to CONTEXT\n" \
320         IF_FEATURE_CHCON_LONG_OPTIONS( \
321      "\n        -v,--verbose            Verbose" \
322      "\n        -c,--changes            Report changes made" \
323      "\n        -h,--no-dereference     Affect symlinks instead of their targets" \
324      "\n        -f,--silent,--quiet     Suppress most error messages" \
325      "\n        --reference=RFILE       Use RFILE's group instead of using a CONTEXT value" \
326      "\n        -u,--user=USER          Set user/role/type/range in the target" \
327      "\n        -r,--role=ROLE          security context" \
328      "\n        -t,--type=TYPE" \
329      "\n        -l,--range=RANGE" \
330      "\n        -R,--recursive          Recurse subdirectories" \
331         ) \
332         IF_NOT_FEATURE_CHCON_LONG_OPTIONS( \
333      "\n        -v      Verbose" \
334      "\n        -c      Report changes made" \
335      "\n        -h      Affect symlinks instead of their targets" \
336      "\n        -f      Suppress most error messages" \
337      "\n        -u USER Set user/role/type/range in the target security context" \
338      "\n        -r ROLE" \
339      "\n        -t TYPE" \
340      "\n        -l RNG" \
341      "\n        -R      Recurse subdirectories" \
342         )
343
344 #define chmod_trivial_usage \
345        "[-R"IF_DESKTOP("cvf")"] MODE[,MODE]... FILE..."
346 #define chmod_full_usage "\n\n" \
347        "Each MODE is one or more of the letters ugoa, one of the\n" \
348        "symbols +-= and one or more of the letters rwxst\n" \
349      "\nOptions:" \
350      "\n        -R      Recurse directories" \
351         IF_DESKTOP( \
352      "\n        -c      List changed files" \
353      "\n        -v      List all files" \
354      "\n        -f      Hide errors" \
355         )
356 #define chmod_example_usage \
357        "$ ls -l /tmp/foo\n" \
358        "-rw-rw-r--    1 root     root            0 Apr 12 18:25 /tmp/foo\n" \
359        "$ chmod u+x /tmp/foo\n" \
360        "$ ls -l /tmp/foo\n" \
361        "-rwxrw-r--    1 root     root            0 Apr 12 18:25 /tmp/foo*\n" \
362        "$ chmod 444 /tmp/foo\n" \
363        "$ ls -l /tmp/foo\n" \
364        "-r--r--r--    1 root     root            0 Apr 12 18:25 /tmp/foo\n"
365
366 #define chgrp_trivial_usage \
367        "[-RhLHP"IF_DESKTOP("cvf")"]... GROUP FILE..."
368 #define chgrp_full_usage "\n\n" \
369        "Change the group membership of each FILE to GROUP\n" \
370      "\nOptions:" \
371      "\n        -R      Recurse directories" \
372      "\n        -h      Affect symlinks instead of symlink targets" \
373      "\n        -L      Traverse all symlinks to directories" \
374      "\n        -H      Traverse symlinks on command line only" \
375      "\n        -P      Do not traverse symlinks (default)" \
376         IF_DESKTOP( \
377      "\n        -c      List changed files" \
378      "\n        -v      Verbose" \
379      "\n        -f      Hide errors" \
380         )
381 #define chgrp_example_usage \
382        "$ ls -l /tmp/foo\n" \
383        "-r--r--r--    1 andersen andersen        0 Apr 12 18:25 /tmp/foo\n" \
384        "$ chgrp root /tmp/foo\n" \
385        "$ ls -l /tmp/foo\n" \
386        "-r--r--r--    1 andersen root            0 Apr 12 18:25 /tmp/foo\n"
387
388 #define chown_trivial_usage \
389        "[-RhLHP"IF_DESKTOP("cvf")"]... OWNER[<.|:>[GROUP]] FILE..."
390 #define chown_full_usage "\n\n" \
391        "Change the owner and/or group of each FILE to OWNER and/or GROUP\n" \
392      "\nOptions:" \
393      "\n        -R      Recurse directories" \
394      "\n        -h      Affect symlinks instead of symlink targets" \
395      "\n        -L      Traverse all symlinks to directories" \
396      "\n        -H      Traverse symlinks on command line only" \
397      "\n        -P      Do not traverse symlinks (default)" \
398         IF_DESKTOP( \
399      "\n        -c      List changed files" \
400      "\n        -v      List all files" \
401      "\n        -f      Hide errors" \
402         )
403 #define chown_example_usage \
404        "$ ls -l /tmp/foo\n" \
405        "-r--r--r--    1 andersen andersen        0 Apr 12 18:25 /tmp/foo\n" \
406        "$ chown root /tmp/foo\n" \
407        "$ ls -l /tmp/foo\n" \
408        "-r--r--r--    1 root     andersen        0 Apr 12 18:25 /tmp/foo\n" \
409        "$ chown root.root /tmp/foo\n" \
410        "ls -l /tmp/foo\n" \
411        "-r--r--r--    1 root     root            0 Apr 12 18:25 /tmp/foo\n"
412
413 #define chpst_trivial_usage \
414        "[-vP012] [-u USER[:GRP]] [-U USER[:GRP]] [-e DIR]\n" \
415        "        [-/ DIR] [-n NICE] [-m BYTES] [-d BYTES] [-o N]\n" \
416        "        [-p N] [-f BYTES] [-c BYTES] PROG ARGS"
417 #define chpst_full_usage "\n\n" \
418        "Change the process state and run PROG\n" \
419      "\nOptions:" \
420      "\n        -u USER[:GRP]   Set uid and gid" \
421      "\n        -U USER[:GRP]   Set $UID and $GID in environment" \
422      "\n        -e DIR          Set environment variables as specified by files" \
423      "\n                        in DIR: file=1st_line_of_file" \
424      "\n        -/ DIR          Chroot to DIR" \
425      "\n        -n NICE         Add NICE to nice value" \
426      "\n        -m BYTES        Same as -d BYTES -s BYTES -l BYTES" \
427      "\n        -d BYTES        Limit data segment" \
428      "\n        -o N            Limit number of open files per process" \
429      "\n        -p N            Limit number of processes per uid" \
430      "\n        -f BYTES        Limit output file sizes" \
431      "\n        -c BYTES        Limit core file size" \
432      "\n        -v              Verbose" \
433      "\n        -P              Create new process group" \
434      "\n        -0              Close standard input" \
435      "\n        -1              Close standard output" \
436      "\n        -2              Close standard error" \
437
438 #define setuidgid_trivial_usage \
439        "account prog args"
440 #define setuidgid_full_usage "\n\n" \
441        "Set uid and gid to account's uid and gid, removing all supplementary\n" \
442        "groups and run PROG"
443 #define envuidgid_trivial_usage \
444        "account prog args"
445 #define envuidgid_full_usage "\n\n" \
446        "Set $UID to account's uid and $GID to account's gid and run PROG"
447 #define envdir_trivial_usage \
448        "dir prog args"
449 #define envdir_full_usage "\n\n" \
450        "Set various environment variables as specified by files\n" \
451        "in the directory dir and run PROG"
452 #define softlimit_trivial_usage \
453        "[-a BYTES] [-m BYTES] [-d BYTES] [-s BYTES] [-l BYTES]\n" \
454        "        [-f BYTES] [-c BYTES] [-r BYTES] [-o N] [-p N] [-t N]\n" \
455        "        PROG ARGS"
456 #define softlimit_full_usage "\n\n" \
457        "Set soft resource limits, then run PROG\n" \
458      "\nOptions:" \
459      "\n        -a BYTES        Limit total size of all segments" \
460      "\n        -m BYTES        Same as -d BYTES -s BYTES -l BYTES -a BYTES" \
461      "\n        -d BYTES        Limit data segment" \
462      "\n        -s BYTES        Limit stack segment" \
463      "\n        -l BYTES        Limit locked memory size" \
464      "\n        -o N            Limit number of open files per process" \
465      "\n        -p N            Limit number of processes per uid" \
466      "\nOptions controlling file sizes:" \
467      "\n        -f BYTES        Limit output file sizes" \
468      "\n        -c BYTES        Limit core file size" \
469      "\nEfficiency opts:" \
470      "\n        -r BYTES        Limit resident set size" \
471      "\n        -t N            Limit CPU time, process receives" \
472      "\n                        a SIGXCPU after N seconds" \
473
474 #define chroot_trivial_usage \
475        "NEWROOT [PROG [ARGS]]"
476 #define chroot_full_usage "\n\n" \
477        "Run PROG with root directory set to NEWROOT"
478 #define chroot_example_usage \
479        "$ ls -l /bin/ls\n" \
480        "lrwxrwxrwx    1 root     root          12 Apr 13 00:46 /bin/ls -> /BusyBox\n" \
481        "# mount /dev/hdc1 /mnt -t minix\n" \
482        "# chroot /mnt\n" \
483        "# ls -l /bin/ls\n" \
484        "-rwxr-xr-x    1 root     root        40816 Feb  5 07:45 /bin/ls*\n"
485
486 #define chvt_trivial_usage \
487        "N"
488 #define chvt_full_usage "\n\n" \
489        "Change the foreground virtual terminal to /dev/ttyN"
490
491 #define cksum_trivial_usage \
492        "FILES..."
493 #define cksum_full_usage "\n\n" \
494        "Calculate the CRC32 checksums of FILES"
495
496 #define clear_trivial_usage \
497        ""
498 #define clear_full_usage "\n\n" \
499        "Clear screen"
500
501 #define cmp_trivial_usage \
502        "[-l] [-s] FILE1 [FILE2" IF_DESKTOP(" [SKIP1 [SKIP2]") "]]"
503 #define cmp_full_usage "\n\n" \
504        "Compares FILE1 vs stdin if FILE2 is not specified\n" \
505      "\nOptions:" \
506      "\n        -l      Write the byte numbers (decimal) and values (octal)" \
507      "\n                for all differing bytes" \
508      "\n        -s      Quiet" \
509
510 #define comm_trivial_usage \
511        "[-123] FILE1 FILE2"
512 #define comm_full_usage "\n\n" \
513        "Compare FILE1 to FILE2, or to stdin if - is specified\n" \
514      "\nOptions:" \
515      "\n        -1      Suppress lines unique to FILE1" \
516      "\n        -2      Suppress lines unique to FILE2" \
517      "\n        -3      Suppress lines common to both files" \
518
519 #define bbconfig_trivial_usage \
520        ""
521 #define bbconfig_full_usage "\n\n" \
522        "Print the config file which built busybox"
523
524 #define chrt_trivial_usage \
525        "[OPTIONS] [PRIO] [PID | PROG [ARGS]]"
526 #define chrt_full_usage "\n\n" \
527        "Manipulate real-time attributes of a process\n" \
528      "\nOptions:" \
529      "\n        -p      Operate on pid" \
530      "\n        -r      Set scheduling policy to SCHED_RR" \
531      "\n        -f      Set scheduling policy to SCHED_FIFO" \
532      "\n        -o      Set scheduling policy to SCHED_OTHER" \
533      "\n        -m      Show min and max priorities" \
534
535 #define chrt_example_usage \
536        "$ chrt -r 4 sleep 900; x=$!\n" \
537        "$ chrt -f -p 3 $x\n" \
538        "You need CAP_SYS_NICE privileges to set scheduling attributes of a process"
539
540 #define cp_trivial_usage \
541        "[OPTIONS] SOURCE DEST"
542 #define cp_full_usage "\n\n" \
543        "Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY\n" \
544      "\nOptions:" \
545      "\n        -a      Same as -dpR" \
546         IF_SELINUX( \
547      "\n        -c      Preserve security context" \
548         ) \
549      "\n        -d,-P   Preserve links" \
550      "\n        -H,-L   Dereference all symlinks (default)" \
551      "\n        -p      Preserve file attributes if possible" \
552      "\n        -f      Force overwrite" \
553      "\n        -i      Prompt before overwrite" \
554      "\n        -R,-r   Recurse directories" \
555      "\n        -l,-s   Create (sym)links" \
556
557 #define cpio_trivial_usage \
558        "-[ti" IF_FEATURE_CPIO_O("o") IF_FEATURE_CPIO_P("p") "dmvu] [-F FILE]" \
559        IF_FEATURE_CPIO_O( " [-H newc]" )
560 #define cpio_full_usage "\n\n" \
561        "Extract or list files from a cpio archive" \
562         IF_FEATURE_CPIO_O( ", or create a cpio archive" ) \
563      "\nMain operation mode:" \
564      "\n        -t      List" \
565      "\n        -i      Extract" \
566         IF_FEATURE_CPIO_O( \
567      "\n        -o      Create" \
568         ) \
569         IF_FEATURE_CPIO_P( \
570      "\n        -p      Passthrough" \
571         ) \
572      "\nOptions:" \
573      "\n        -d      Make leading directories" \
574      "\n        -m      Preserve mtime" \
575      "\n        -v      Verbose" \
576      "\n        -u      Overwrite" \
577      "\n        -F      Input file" \
578         IF_FEATURE_CPIO_O( \
579      "\n        -H      Define format" \
580         ) \
581
582 #define crond_trivial_usage \
583        "-fbS -l N " IF_FEATURE_CROND_D("-d N ") "-L LOGFILE -c DIR"
584 #define crond_full_usage "\n\n" \
585        "        -f      Foreground" \
586      "\n        -b      Background (default)" \
587      "\n        -S      Log to syslog (default)" \
588      "\n        -l      Set log level. 0 is the most verbose, default 8" \
589         IF_FEATURE_CROND_D( \
590      "\n        -d      Set log level, log to stderr" \
591         ) \
592      "\n        -L      Log to file" \
593      "\n        -c      Working dir" \
594
595 #define crontab_trivial_usage \
596        "[-c DIR] [-u USER] [-ler]|[FILE]"
597 #define crontab_full_usage "\n\n" \
598        "        -c      Crontab directory" \
599      "\n        -u      User" \
600      "\n        -l      List crontab" \
601      "\n        -e      Edit crontab" \
602      "\n        -r      Delete crontab" \
603      "\n        FILE    Replace crontab by FILE ('-': stdin)" \
604
605 #define cryptpw_trivial_usage \
606        "[OPTIONS] [PASSWORD] [SALT]"
607 /* We do support -s, we just don't mention it */
608 #define cryptpw_full_usage "\n\n" \
609        "Crypt the PASSWORD using crypt(3)\n" \
610      "\nOptions:" \
611         IF_LONG_OPTS( \
612      "\n        -P,--password-fd=NUM    Read password from fd NUM" \
613 /*   "\n        -s,--stdin              Use stdin; like -P0" */ \
614      "\n        -m,--method=TYPE        Encryption method TYPE" \
615      "\n        -S,--salt=SALT" \
616         ) \
617         IF_NOT_LONG_OPTS( \
618      "\n        -P NUM  Read password from fd NUM" \
619 /*   "\n        -s      Use stdin; like -P0" */ \
620      "\n        -m TYPE Encryption method TYPE" \
621      "\n        -S SALT" \
622         ) \
623
624 /* mkpasswd is an alias to cryptpw */
625
626 #define mkpasswd_trivial_usage \
627        "[OPTIONS] [PASSWORD] [SALT]"
628 /* We do support -s, we just don't mention it */
629 #define mkpasswd_full_usage "\n\n" \
630        "Crypt the PASSWORD using crypt(3)\n" \
631      "\nOptions:" \
632         IF_LONG_OPTS( \
633      "\n        -P,--password-fd=NUM    Read password from fd NUM" \
634 /*   "\n        -s,--stdin              Use stdin; like -P0" */ \
635      "\n        -m,--method=TYPE        Encryption method TYPE" \
636      "\n        -S,--salt=SALT" \
637         ) \
638         IF_NOT_LONG_OPTS( \
639      "\n        -P NUM  Read password from fd NUM" \
640 /*   "\n        -s      Use stdin; like -P0" */ \
641      "\n        -m TYPE Encryption method TYPE" \
642      "\n        -S SALT" \
643         ) \
644
645 #define cttyhack_trivial_usage NOUSAGE_STR
646 #define cttyhack_full_usage ""
647
648 #define cut_trivial_usage \
649        "[OPTIONS] [FILE]..."
650 #define cut_full_usage "\n\n" \
651        "Print selected fields from each input FILE to standard output\n" \
652      "\nOptions:" \
653      "\n        -b LIST Output only bytes from LIST" \
654      "\n        -c LIST Output only characters from LIST" \
655      "\n        -d CHAR Use CHAR instead of tab as the field delimiter" \
656      "\n        -s      Output only the lines containing delimiter" \
657      "\n        -f N    Print only these fields" \
658      "\n        -n      Ignored" \
659
660 #define cut_example_usage \
661        "$ echo \"Hello world\" | cut -f 1 -d ' '\n" \
662        "Hello\n" \
663        "$ echo \"Hello world\" | cut -f 2 -d ' '\n" \
664        "world\n"
665
666 #define date_trivial_usage \
667        "[OPTIONS] [+FMT] [TIME]"
668 #define date_full_usage "\n\n" \
669        "Display time (using +FMT), or set time\n" \
670      "\nOptions:" \
671      "\n        [-s] TIME       Set time to TIME" \
672      "\n        -u              Work in UTC (don't convert to local time)" \
673      "\n        -R              Output RFC-822 compliant date string" \
674         IF_FEATURE_DATE_ISOFMT( \
675      "\n        -I[SPEC]        Output ISO-8601 compliant date string" \
676      "\n                        SPEC='date' (default) for date only," \
677      "\n                        'hours', 'minutes', or 'seconds' for date and" \
678      "\n                        time to the indicated precision" \
679         ) \
680      "\n        -r FILE         Display last modification time of FILE" \
681      "\n        -d TIME         Display TIME, not 'now'" \
682         IF_FEATURE_DATE_ISOFMT( \
683      "\n        -D FMT          Use FMT for -d TIME conversion" \
684         ) \
685      "\n" \
686      "\nRecognized formats for TIME:" \
687      "\n        hh:mm[:ss]" \
688      "\n        [YYYY.]MM.DD-hh:mm[:ss]" \
689      "\n        YYYY-MM-DD hh:mm[:ss]" \
690      "\n        [[[[[YY]YY]MM]DD]hh]mm[.ss]" \
691
692 #define date_example_usage \
693        "$ date\n" \
694        "Wed Apr 12 18:52:41 MDT 2000\n"
695
696 #define dc_trivial_usage \
697        "expression..."
698 #define dc_full_usage "\n\n" \
699        "Tiny RPN calculator. Operations:\n" \
700        "+, add, -, sub, *, mul, /, div, %, mod, **, exp, and, or, not, eor,\n" \
701        "p - print top of the stack (without altering the stack),\n" \
702        "f - print entire stack, o - pop the value and set output radix\n" \
703        "(value must be 10 or 16).\n" \
704        "Examples: 'dc 2 2 add' -> 4, 'dc 8 8 * 2 2 + /' -> 16.\n" \
705
706 #define dc_example_usage \
707        "$ dc 2 2 + p\n" \
708        "4\n" \
709        "$ dc 8 8 \\* 2 2 + / p\n" \
710        "16\n" \
711        "$ dc 0 1 and p\n" \
712        "0\n" \
713        "$ dc 0 1 or p\n" \
714        "1\n" \
715        "$ echo 72 9 div 8 mul p | dc\n" \
716        "64\n"
717
718 #define dd_trivial_usage \
719        "[if=FILE] [of=FILE] " IF_FEATURE_DD_IBS_OBS("[ibs=N] [obs=N] ") "[bs=N] [count=N] [skip=N]\n" \
720        "        [seek=N]" IF_FEATURE_DD_IBS_OBS(" [conv=notrunc|noerror|sync|fsync]")
721 #define dd_full_usage "\n\n" \
722        "Copy a file with converting and formatting\n" \
723      "\nOptions:" \
724      "\n        if=FILE         Read from FILE instead of stdin" \
725      "\n        of=FILE         Write to FILE instead of stdout" \
726      "\n        bs=N            Read and write N bytes at a time" \
727         IF_FEATURE_DD_IBS_OBS( \
728      "\n        ibs=N           Read N bytes at a time" \
729         ) \
730         IF_FEATURE_DD_IBS_OBS( \
731      "\n        obs=N           Write N bytes at a time" \
732         ) \
733      "\n        count=N         Copy only N input blocks" \
734      "\n        skip=N          Skip N input blocks" \
735      "\n        seek=N          Skip N output blocks" \
736         IF_FEATURE_DD_IBS_OBS( \
737      "\n        conv=notrunc    Don't truncate output file" \
738      "\n        conv=noerror    Continue after read errors" \
739      "\n        conv=sync       Pad blocks with zeros" \
740      "\n        conv=fsync      Physically write data out before finishing" \
741         ) \
742      "\n" \
743      "\nNumbers may be suffixed by c (x1), w (x2), b (x512), kD (x1000), k (x1024)," \
744      "\nMD (x1000000), M (x1048576), GD (x1000000000) or G (x1073741824)" \
745
746 #define dd_example_usage \
747        "$ dd if=/dev/zero of=/dev/ram1 bs=1M count=4\n" \
748        "4+0 records in\n" \
749        "4+0 records out\n"
750
751 #define deallocvt_trivial_usage \
752        "[N]"
753 #define deallocvt_full_usage "\n\n" \
754        "Deallocate unused virtual terminal /dev/ttyN"
755
756 #define delgroup_trivial_usage \
757         IF_FEATURE_DEL_USER_FROM_GROUP("[USER] ")"GROUP"
758 #define delgroup_full_usage "\n\n" \
759        "Delete group GROUP from the system" \
760         IF_FEATURE_DEL_USER_FROM_GROUP(" or user USER from group GROUP")
761
762 #define deluser_trivial_usage \
763        "USER"
764 #define deluser_full_usage "\n\n" \
765        "Delete USER from the system"
766
767 #define depmod_trivial_usage NOUSAGE_STR
768 #define depmod_full_usage ""
769
770 #define devmem_trivial_usage \
771         "ADDRESS [WIDTH [VALUE]]"
772
773 #define devmem_full_usage "\n\n" \
774        "Read/write from physical address\n" \
775      "\n        ADDRESS Address to act upon" \
776      "\n        WIDTH   Width (8/16/...)" \
777      "\n        VALUE   Data to be written" \
778
779 #define devfsd_trivial_usage \
780        "mntpnt [-v]" IF_DEVFSD_FG_NP("[-fg][-np]")
781 #define devfsd_full_usage "\n\n" \
782        "Manage devfs permissions and old device name symlinks\n" \
783      "\nOptions:" \
784      "\n        mntpnt  The mount point where devfs is mounted" \
785      "\n        -v      Print the protocol version numbers for devfsd" \
786      "\n                and the kernel-side protocol version and exit" \
787         IF_DEVFSD_FG_NP( \
788      "\n        -fg     Run in foreground" \
789      "\n        -np     Exit after parsing the configuration file" \
790      "\n                and processing synthetic REGISTER events," \
791      "\n                do not poll for events" \
792         )
793
794 #define df_trivial_usage \
795         "[-Pk" \
796         IF_FEATURE_HUMAN_READABLE("mh") \
797         IF_FEATURE_DF_FANCY("ai] [-B SIZE") \
798         "] [FILESYSTEM...]"
799 #define df_full_usage "\n\n" \
800        "Print filesystem usage statistics\n" \
801      "\nOptions:" \
802      "\n        -P      POSIX output format" \
803      "\n        -k      1024-byte blocks (default)" \
804         IF_FEATURE_HUMAN_READABLE( \
805      "\n        -m      1M-byte blocks" \
806      "\n        -h      Human readable (e.g. 1K 243M 2G)" \
807         ) \
808         IF_FEATURE_DF_FANCY( \
809      "\n        -a      Show all filesystems" \
810      "\n        -i      Inodes" \
811      "\n        -B SIZE Blocksize" \
812         ) \
813
814 #define df_example_usage \
815        "$ df\n" \
816        "Filesystem           1K-blocks      Used Available Use% Mounted on\n" \
817        "/dev/sda3              8690864   8553540    137324  98% /\n" \
818        "/dev/sda1                64216     36364     27852  57% /boot\n" \
819        "$ df /dev/sda3\n" \
820        "Filesystem           1K-blocks      Used Available Use% Mounted on\n" \
821        "/dev/sda3              8690864   8553540    137324  98% /\n" \
822        "$ POSIXLY_CORRECT=sure df /dev/sda3\n" \
823        "Filesystem         512B-blocks      Used Available Use% Mounted on\n" \
824        "/dev/sda3             17381728  17107080    274648  98% /\n" \
825        "$ POSIXLY_CORRECT=yep df -P /dev/sda3\n" \
826        "Filesystem          512-blocks      Used Available Capacity Mounted on\n" \
827        "/dev/sda3             17381728  17107080    274648      98% /\n"
828
829 #define dhcprelay_trivial_usage \
830        "CLIENT_IFACE[,CLIENT_IFACE2...] SERVER_IFACE [SERVER_IP]"
831 #define dhcprelay_full_usage "\n\n" \
832        "Relay DHCP requests between clients and server" \
833
834 #define diff_trivial_usage \
835        "[-abdiNqrTstw] [-L LABEL] [-S FILE] [-U LINES] FILE1 FILE2"
836 #define diff_full_usage "\n\n" \
837        "Compare files line by line and output the differences between them.\n" \
838        "This implementation supports unified diffs only.\n" \
839      "\nOptions:" \
840      "\n        -a      Treat all files as text" \
841      "\n        -b      Ignore changes in the amount of whitespace" \
842      "\n        -d      Try hard to find a smaller set of changes" \
843      "\n        -i      Ignore case differences" \
844      "\n        -L      Use LABEL instead of the filename in the unified header" \
845      "\n        -N      Treat absent files as empty" \
846      "\n        -q      Output only whether files differ" \
847      "\n        -r      Recursively compare subdirectories" \
848      "\n        -S      Start with FILE when comparing directories" \
849      "\n        -T      Make tabs line up by prefixing a tab when necessary" \
850      "\n        -s      Report when two files are the same" \
851      "\n        -t      Expand tabs to spaces in output" \
852      "\n        -U      Output LINES lines of context" \
853      "\n        -w      Ignore all whitespace" \
854
855 #define dirname_trivial_usage \
856        "FILENAME"
857 #define dirname_full_usage "\n\n" \
858        "Strip non-directory suffix from FILENAME"
859 #define dirname_example_usage \
860        "$ dirname /tmp/foo\n" \
861        "/tmp\n" \
862        "$ dirname /tmp/foo/\n" \
863        "/tmp\n"
864
865 #define dmesg_trivial_usage \
866        "[-c] [-n LEVEL] [-s SIZE]"
867 #define dmesg_full_usage "\n\n" \
868        "Print or control the kernel ring buffer\n" \
869      "\nOptions:" \
870      "\n        -c              Clear ring buffer after printing" \
871      "\n        -n LEVEL        Set console logging level" \
872      "\n        -s SIZE         Buffer size" \
873
874 #define dnsd_trivial_usage \
875        "[-c config] [-t seconds] [-p port] [-i iface-ip] [-d]"
876 #define dnsd_full_usage "\n\n" \
877        "Small static DNS server daemon\n" \
878      "\nOptions:" \
879      "\n        -c      Config filename" \
880      "\n        -t      TTL in seconds" \
881      "\n        -p      Listening port" \
882      "\n        -i      Listening ip (default all)" \
883      "\n        -d      Daemonize" \
884
885 #define dos2unix_trivial_usage \
886        "[OPTION] [FILE]"
887 #define dos2unix_full_usage "\n\n" \
888        "Convert FILE in-place from DOS to Unix format.\n" \
889        "When no file is given, use stdin/stdout.\n" \
890      "\nOptions:" \
891      "\n        -u      dos2unix" \
892      "\n        -d      unix2dos" \
893
894 #define unix2dos_trivial_usage \
895        "[OPTION] [FILE]"
896 #define unix2dos_full_usage "\n\n" \
897        "Convert FILE in-place from Unix to DOS format.\n" \
898        "When no file is given, use stdin/stdout.\n" \
899      "\nOptions:" \
900      "\n        -u      dos2unix" \
901      "\n        -d      unix2dos" \
902
903 #define dpkg_trivial_usage \
904        "[-ilCPru] [-F option] package_name"
905 #define dpkg_full_usage "\n\n" \
906        "Install, remove and manage Debian packages\n" \
907      "\nOptions:" \
908      "\n        -i              Install the package" \
909      "\n        -l              List of installed packages" \
910      "\n        -C              Configure an unpackaged package" \
911      "\n        -F depends      Ignore dependency problems" \
912      "\n        -P              Purge all files of a package" \
913      "\n        -r              Remove all but the configuration files for a package" \
914      "\n        -u              Unpack a package, but don't configure it" \
915
916 #define dpkg_deb_trivial_usage \
917        "[-cefxX] FILE [argument]"
918 #define dpkg_deb_full_usage "\n\n" \
919        "Perform actions on Debian packages (.debs)\n" \
920      "\nOptions:" \
921      "\n        -c      List contents of filesystem tree" \
922      "\n        -e      Extract control files to [argument] directory" \
923      "\n        -f      Display control field name starting with [argument]" \
924      "\n        -x      Extract packages filesystem tree to directory" \
925      "\n        -X      Verbose extract" \
926
927 #define dpkg_deb_example_usage \
928        "$ dpkg-deb -X ./busybox_0.48-1_i386.deb /tmp\n"
929
930 #define du_trivial_usage \
931        "[-aHLdclsx" IF_FEATURE_HUMAN_READABLE("hm") "k] [FILE]..."
932 #define du_full_usage "\n\n" \
933        "Summarize disk space used for each FILE and/or directory.\n" \
934        "Disk space is printed in units of " \
935         IF_FEATURE_DU_DEFAULT_BLOCKSIZE_1K("1024") \
936         IF_NOT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K("512") \
937        " bytes.\n" \
938      "\nOptions:" \
939      "\n        -a      Show file sizes too" \
940      "\n        -H      Follow symlinks on command line" \
941      "\n        -L      Follow all symlinks" \
942      "\n        -d N    Limit output to directories (and files with -a) of depth < N" \
943      "\n        -c      Show grand total" \
944      "\n        -l      Count sizes many times if hard linked" \
945      "\n        -s      Display only a total for each argument" \
946      "\n        -x      Skip directories on different filesystems" \
947         IF_FEATURE_HUMAN_READABLE( \
948      "\n        -h      Sizes in human readable format (e.g., 1K 243M 2G )" \
949      "\n        -m      Sizes in megabytes" \
950         ) \
951      "\n        -k      Sizes in kilobytes" \
952                         IF_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(" (default)") \
953
954 #define du_example_usage \
955        "$ du\n" \
956        "16      ./CVS\n" \
957        "12      ./kernel-patches/CVS\n" \
958        "80      ./kernel-patches\n" \
959        "12      ./tests/CVS\n" \
960        "36      ./tests\n" \
961        "12      ./scripts/CVS\n" \
962        "16      ./scripts\n" \
963        "12      ./docs/CVS\n" \
964        "104     ./docs\n" \
965        "2417    .\n"
966
967 #define dumpkmap_trivial_usage \
968        "> keymap"
969 #define dumpkmap_full_usage "\n\n" \
970        "Print a binary keyboard translation table to standard output"
971 #define dumpkmap_example_usage \
972        "$ dumpkmap > keymap\n"
973
974 #define dumpleases_trivial_usage \
975        "[-r|-a] [-f LEASEFILE]"
976 #define dumpleases_full_usage "\n\n" \
977        "Display DHCP leases granted by udhcpd\n" \
978      "\nOptions:" \
979         IF_LONG_OPTS( \
980      "\n        -f,--file=FILE  Leases file to load" \
981      "\n        -r,--remaining  Interpret lease times as time remaining" \
982      "\n        -a,--absolute   Interpret lease times as expire time" \
983         ) \
984         IF_NOT_LONG_OPTS( \
985      "\n        -f FILE Leases file to load" \
986      "\n        -r      Interpret lease times as time remaining" \
987      "\n        -a      Interpret lease times as expire time" \
988         )
989
990 #define e2fsck_trivial_usage \
991        "[-panyrcdfvstDFSV] [-b superblock] [-B blocksize] " \
992        "[-I inode_buffer_blocks] [-P process_inode_size] " \
993        "[-l|-L bad_blocks_file] [-C fd] [-j external_journal] " \
994        "[-E extended-options] device"
995 #define e2fsck_full_usage "\n\n" \
996        "Check ext2/ext3 file system\n" \
997      "\nOptions:" \
998      "\n        -p              Automatic repair (no questions)" \
999      "\n        -n              Make no changes to the filesystem" \
1000      "\n        -y              Assume 'yes' to all questions" \
1001      "\n        -c              Check for bad blocks and add them to the badblock list" \
1002      "\n        -f              Force checking even if filesystem is marked clean" \
1003      "\n        -v              Verbose" \
1004      "\n        -b superblock   Use alternative superblock" \
1005      "\n        -B blocksize    Force blocksize when looking for superblock" \
1006      "\n        -j journal      Set location of the external journal" \
1007      "\n        -l file         Add to badblocks list" \
1008      "\n        -L file         Set badblocks list" \
1009
1010 #define echo_trivial_usage \
1011         IF_FEATURE_FANCY_ECHO("[-neE] ") "[ARG...]"
1012 #define echo_full_usage "\n\n" \
1013        "Print the specified ARGs to stdout" \
1014         IF_FEATURE_FANCY_ECHO( "\n" \
1015      "\nOptions:" \
1016      "\n        -n      Suppress trailing newline" \
1017      "\n        -e      Interpret backslash-escaped characters (i.e., \\t=tab)" \
1018      "\n        -E      Disable interpretation of backslash-escaped characters" \
1019         )
1020 #define echo_example_usage \
1021        "$ echo \"Erik is cool\"\n" \
1022        "Erik is cool\n" \
1023         IF_FEATURE_FANCY_ECHO("$ echo -e \"Erik\\nis\\ncool\"\n" \
1024        "Erik\n" \
1025        "is\n" \
1026        "cool\n" \
1027        "$ echo \"Erik\\nis\\ncool\"\n" \
1028        "Erik\\nis\\ncool\n")
1029
1030 #define eject_trivial_usage \
1031        "[-t] [-T] [DEVICE]"
1032 #define eject_full_usage "\n\n" \
1033        "Eject specified DEVICE (or default /dev/cdrom)\n" \
1034      "\nOptions:" \
1035         IF_FEATURE_EJECT_SCSI( \
1036      "\n        -s      SCSI device" \
1037         ) \
1038      "\n        -t      Close tray" \
1039      "\n        -T      Open/close tray (toggle)" \
1040
1041 #define ed_trivial_usage ""
1042 #define ed_full_usage ""
1043
1044 #define env_trivial_usage \
1045        "[-iu] [-] [name=value]... [PROG [ARGS]]"
1046 #define env_full_usage "\n\n" \
1047        "Print the current environment or run PROG after setting up\n" \
1048        "the specified environment\n" \
1049      "\nOptions:" \
1050      "\n        -, -i   Start with an empty environment" \
1051      "\n        -u      Remove variable from the environment" \
1052
1053 #define ether_wake_trivial_usage \
1054        "[-b] [-i iface] [-p aa:bb:cc:dd[:ee:ff]] MAC"
1055 #define ether_wake_full_usage "\n\n" \
1056        "Send a magic packet to wake up sleeping machines.\n" \
1057        "MAC must be a station address (00:11:22:33:44:55) or\n" \
1058        "a hostname with a known 'ethers' entry.\n" \
1059      "\nOptions:" \
1060      "\n        -b              Send wake-up packet to the broadcast address" \
1061      "\n        -i iface        Interface to use (default eth0)" \
1062      "\n        -p pass         Append four or six byte password PW to the packet" \
1063
1064 #define expand_trivial_usage \
1065        "[-i] [-t NUM] [FILE|-]"
1066 #define expand_full_usage "\n\n" \
1067        "Convert tabs to spaces, writing to standard output.\n" \
1068      "\nOptions:" \
1069         IF_FEATURE_EXPAND_LONG_OPTIONS( \
1070      "\n        -i,--initial    Do not convert tabs after non blanks" \
1071      "\n        -t,--tabs=N     Tabstops every N chars" \
1072         ) \
1073         IF_NOT_FEATURE_EXPAND_LONG_OPTIONS( \
1074      "\n        -i      Do not convert tabs after non blanks" \
1075      "\n        -t      Tabstops every N chars" \
1076         )
1077
1078 #define expr_trivial_usage \
1079        "EXPRESSION"
1080 #define expr_full_usage "\n\n" \
1081        "Print the value of EXPRESSION to standard output.\n" \
1082        "\n" \
1083        "EXPRESSION may be:\n" \
1084        "        ARG1 | ARG2     ARG1 if it is neither null nor 0, otherwise ARG2\n" \
1085        "        ARG1 & ARG2     ARG1 if neither argument is null or 0, otherwise 0\n" \
1086        "        ARG1 < ARG2     1 if ARG1 is less than ARG2, else 0. Similarly:\n" \
1087        "        ARG1 <= ARG2\n" \
1088        "        ARG1 = ARG2\n" \
1089        "        ARG1 != ARG2\n" \
1090        "        ARG1 >= ARG2\n" \
1091        "        ARG1 > ARG2\n" \
1092        "        ARG1 + ARG2     Sum of ARG1 and ARG2. Similarly:\n" \
1093        "        ARG1 - ARG2\n" \
1094        "        ARG1 * ARG2\n" \
1095        "        ARG1 / ARG2\n" \
1096        "        ARG1 % ARG2\n" \
1097        "        STRING : REGEXP         Anchored pattern match of REGEXP in STRING\n" \
1098        "        match STRING REGEXP     Same as STRING : REGEXP\n" \
1099        "        substr STRING POS LENGTH Substring of STRING, POS counted from 1\n" \
1100        "        index STRING CHARS      Index in STRING where any CHARS is found, or 0\n" \
1101        "        length STRING           Length of STRING\n" \
1102        "        quote TOKEN             Interpret TOKEN as a string, even if\n" \
1103        "                                it is a keyword like 'match' or an\n" \
1104        "                                operator like '/'\n" \
1105        "        (EXPRESSION)            Value of EXPRESSION\n" \
1106        "\n" \
1107        "Beware that many operators need to be escaped or quoted for shells.\n" \
1108        "Comparisons are arithmetic if both ARGs are numbers, else\n" \
1109        "lexicographical. Pattern matches return the string matched between\n" \
1110        "\\( and \\) or null; if \\( and \\) are not used, they return the number\n" \
1111        "of characters matched or 0."
1112
1113 #define fakeidentd_trivial_usage \
1114        "[-fiw] [-b ADDR] [STRING]"
1115 #define fakeidentd_full_usage "\n\n" \
1116        "Provide fake ident (auth) service\n" \
1117      "\nOptions:" \
1118      "\n        -f      Run in foreground" \
1119      "\n        -i      Inetd mode" \
1120      "\n        -w      Inetd 'wait' mode" \
1121      "\n        -b ADDR Bind to specified address" \
1122      "\n        STRING  Ident answer string (default is 'nobody')" \
1123
1124 #define false_trivial_usage \
1125        ""
1126 #define false_full_usage "\n\n" \
1127        "Return an exit code of FALSE (1)"
1128
1129 #define false_example_usage \
1130        "$ false\n" \
1131        "$ echo $?\n" \
1132        "1\n"
1133
1134 #define fbset_trivial_usage \
1135        "[OPTIONS] [MODE]"
1136 #define fbset_full_usage "\n\n" \
1137        "Show and modify frame buffer settings"
1138
1139 #define fbset_example_usage \
1140        "$ fbset\n" \
1141        "mode \"1024x768-76\"\n" \
1142        "        # D: 78.653 MHz, H: 59.949 kHz, V: 75.694 Hz\n" \
1143        "        geometry 1024 768 1024 768 16\n" \
1144        "        timings 12714 128 32 16 4 128 4\n" \
1145        "        accel false\n" \
1146        "        rgba 5/11,6/5,5/0,0/0\n" \
1147        "endmode\n"
1148
1149 #define fdflush_trivial_usage \
1150        "DEVICE"
1151 #define fdflush_full_usage "\n\n" \
1152        "Force floppy disk drive to detect disk change"
1153
1154 #define fdformat_trivial_usage \
1155        "[-n] DEVICE"
1156 #define fdformat_full_usage "\n\n" \
1157        "Format floppy disk\n" \
1158      "\nOptions:" \
1159      "\n        -n      Don't verify after format" \
1160
1161 /* Looks like someone forgot to add this to config system */
1162 #ifndef ENABLE_FEATURE_FDISK_BLKSIZE
1163 # define ENABLE_FEATURE_FDISK_BLKSIZE 0
1164 # define IF_FEATURE_FDISK_BLKSIZE(a)
1165 #endif
1166
1167 #define fdisk_trivial_usage \
1168        "[-ul" IF_FEATURE_FDISK_BLKSIZE("s") "] " \
1169        "[-C CYLINDERS] [-H HEADS] [-S SECTORS] [-b SSZ] DISK"
1170 #define fdisk_full_usage "\n\n" \
1171        "Change partition table\n" \
1172      "\nOptions:" \
1173      "\n        -u              Start and End are in sectors (instead of cylinders)" \
1174      "\n        -l              Show partition table for each DISK, then exit" \
1175         IF_FEATURE_FDISK_BLKSIZE( \
1176      "\n        -s              Show partition sizes in kb for each DISK, then exit" \
1177         ) \
1178      "\n        -b 2048         (for certain MO disks) use 2048-byte sectors" \
1179      "\n        -C CYLINDERS    Set number of cylinders/heads/sectors" \
1180      "\n        -H HEADS\n" \
1181      "\n        -S SECTORS" \
1182
1183 #define blkid_trivial_usage \
1184        ""
1185 #define blkid_full_usage "\n\n" \
1186        "Print UUIDs of all filesystems."
1187
1188 #define findfs_trivial_usage \
1189        "LABEL=label or UUID=uuid"
1190 #define findfs_full_usage "\n\n" \
1191        "Find a filesystem device based on a label or UUID."
1192 #define findfs_example_usage \
1193        "$ findfs LABEL=MyDevice"
1194
1195 #define find_trivial_usage \
1196        "[PATH...] [EXPRESSION]"
1197 #define find_full_usage "\n\n" \
1198        "Search for files. The default PATH is the current directory,\n" \
1199        "default EXPRESSION is '-print'\n" \
1200      "\nEXPRESSION may consist of:" \
1201      "\n        -follow         Dereference symlinks" \
1202         IF_FEATURE_FIND_XDEV( \
1203      "\n        -xdev           Don't descend directories on other filesystems") \
1204         IF_FEATURE_FIND_MAXDEPTH( \
1205      "\n        -maxdepth N     Descend at most N levels. -maxdepth 0 applies" \
1206      "\n                        tests/actions to command line arguments only") \
1207      "\n        -mindepth N     Do not act on first N levels" \
1208      "\n        -name PATTERN   File name (w/o directory name) matches PATTERN" \
1209      "\n        -iname PATTERN  Case insensitive -name" \
1210         IF_FEATURE_FIND_PATH( \
1211      "\n        -path PATTERN   Path matches PATTERN") \
1212         IF_FEATURE_FIND_REGEX( \
1213      "\n        -regex PATTERN  Path matches regex PATTERN") \
1214         IF_FEATURE_FIND_TYPE( \
1215      "\n        -type X         File type is X (X is one of: f,d,l,b,c,...)") \
1216         IF_FEATURE_FIND_PERM( \
1217      "\n        -perm NNN       Permissions match any of (+NNN), all of (-NNN)," \
1218      "\n                        or exactly (NNN)") \
1219         IF_FEATURE_FIND_MTIME( \
1220      "\n        -mtime DAYS     Modified time is greater than (+N), less than (-N)," \
1221      "\n                        or exactly (N) days") \
1222         IF_FEATURE_FIND_MMIN( \
1223      "\n        -mmin MINS      Modified time is greater than (+N), less than (-N)," \
1224      "\n                        or exactly (N) minutes") \
1225         IF_FEATURE_FIND_NEWER( \
1226      "\n        -newer FILE     Modified time is more recent than FILE's") \
1227         IF_FEATURE_FIND_INUM( \
1228      "\n        -inum N         File has inode number N") \
1229         IF_FEATURE_FIND_USER( \
1230      "\n        -user NAME      File is owned by user NAME (numeric user ID allowed)") \
1231         IF_FEATURE_FIND_GROUP( \
1232      "\n        -group NAME     File belongs to group NAME (numeric group ID allowed)") \
1233         IF_FEATURE_FIND_DEPTH( \
1234      "\n        -depth          Process directory name after traversing it") \
1235         IF_FEATURE_FIND_SIZE( \
1236      "\n        -size N[bck]    File size is N (c:bytes,k:kbytes,b:512 bytes(def.))." \
1237      "\n                        +/-N: file size is bigger/smaller than N") \
1238      "\n        -print          Print (default and assumed)" \
1239         IF_FEATURE_FIND_PRINT0( \
1240      "\n        -print0         Delimit output with null characters rather than" \
1241      "\n                        newlines") \
1242         IF_FEATURE_FIND_CONTEXT ( \
1243      "\n        -context        File has specified security context") \
1244         IF_FEATURE_FIND_EXEC( \
1245      "\n        -exec CMD ARG ; Run CMD with all instances of {} replaced by the" \
1246      "\n                        matching files") \
1247         IF_FEATURE_FIND_PRUNE( \
1248      "\n        -prune          Stop traversing current subtree") \
1249         IF_FEATURE_FIND_DELETE( \
1250      "\n        -delete         Delete files, turns on -depth option") \
1251         IF_FEATURE_FIND_PAREN( \
1252      "\n        (EXPR)          Group an expression") \
1253
1254 #define find_example_usage \
1255        "$ find / -name passwd\n" \
1256        "/etc/passwd\n"
1257
1258 #define flash_lock_trivial_usage \
1259        "MTD_DEVICE OFFSET SECTORS"
1260 #define flash_lock_full_usage "\n\n" \
1261        "Lock part or all of an MTD device. If SECTORS is -1, then all sectors\n" \
1262        "will be locked, regardless of the value of OFFSET"
1263
1264 #define flash_unlock_trivial_usage \
1265        "MTD_DEVICE"
1266 #define flash_unlock_full_usage "\n\n" \
1267        "Unlock an MTD device"
1268
1269 #define flash_eraseall_trivial_usage \
1270        "[-jq] MTD_DEVICE"
1271 #define flash_eraseall_full_usage "\n\n" \
1272        "Erase an MTD device\n" \
1273      "\nOptions:" \
1274      "\n        -j      format the device for jffs2" \
1275      "\n        -q      don't display progress messages"
1276
1277 #define fold_trivial_usage \
1278        "[-bs] [-w WIDTH] [FILE]"
1279 #define fold_full_usage "\n\n" \
1280        "Wrap input lines in each FILE (standard input by default), writing to\n" \
1281        "standard output\n" \
1282      "\nOptions:" \
1283      "\n        -b      Count bytes rather than columns" \
1284      "\n        -s      Break at spaces" \
1285      "\n        -w      Use WIDTH columns instead of 80" \
1286
1287 #define free_trivial_usage \
1288        ""
1289 #define free_full_usage "\n\n" \
1290        "Display the amount of free and used system memory"
1291 #define free_example_usage \
1292        "$ free\n" \
1293        "              total         used         free       shared      buffers\n" \
1294        "  Mem:       257628       248724         8904        59644        93124\n" \
1295        " Swap:       128516         8404       120112\n" \
1296        "Total:       386144       257128       129016\n" \
1297
1298 #define freeramdisk_trivial_usage \
1299        "DEVICE"
1300 #define freeramdisk_full_usage "\n\n" \
1301        "Free all memory used by the specified ramdisk"
1302 #define freeramdisk_example_usage \
1303        "$ freeramdisk /dev/ram2\n"
1304
1305 #define fsck_trivial_usage \
1306        "[-ANPRTV] [-C fd] [-t fstype] [fs-options] [filesys...]"
1307 #define fsck_full_usage "\n\n" \
1308        "Check and repair filesystems\n" \
1309      "\nOptions:" \
1310      "\n        -A      Walk /etc/fstab and check all filesystems" \
1311      "\n        -N      Don't execute, just show what would be done" \
1312      "\n        -P      With -A, check filesystems in parallel" \
1313      "\n        -R      With -A, skip the root filesystem" \
1314      "\n        -T      Don't show title on startup" \
1315      "\n        -V      Verbose" \
1316      "\n        -C n    Write status information to specified filedescriptor" \
1317      "\n        -t type List of filesystem types to check" \
1318
1319 #define fsck_minix_trivial_usage \
1320        "[-larvsmf] /dev/name"
1321 #define fsck_minix_full_usage "\n\n" \
1322        "Check MINIX filesystem\n" \
1323      "\nOptions:" \
1324      "\n        -l      List all filenames" \
1325      "\n        -r      Perform interactive repairs" \
1326      "\n        -a      Perform automatic repairs" \
1327      "\n        -v      Verbose" \
1328      "\n        -s      Output superblock information" \
1329      "\n        -m      Show \"mode not cleared\" warnings" \
1330      "\n        -f      Force file system check" \
1331
1332 #define ftpd_trivial_usage \
1333        "[-wvS] [-t N] [-T N] [DIR]"
1334 #define ftpd_full_usage "\n\n" \
1335        "FTP server\n" \
1336        "\n" \
1337        "ftpd should be used as an inetd service.\n" \
1338        "ftpd's line for inetd.conf:\n" \
1339        "        21 stream tcp nowait root ftpd ftpd /files/to/serve\n" \
1340        "It also can be ran from tcpsvd:\n" \
1341        "        tcpsvd -vE 0.0.0.0 21 ftpd /files/to/serve\n" \
1342      "\nOptions:" \
1343      "\n        -w      Allow upload" \
1344      "\n        -v      Log to stderr" \
1345      "\n        -S      Log to syslog" \
1346      "\n        -t,-T   Idle and absolute timeouts" \
1347      "\n        DIR     Change root to this directory" \
1348
1349 #define ftpget_trivial_usage \
1350        "[OPTIONS] HOST LOCAL_FILE REMOTE_FILE"
1351 #define ftpget_full_usage "\n\n" \
1352        "Retrieve a remote file via FTP\n" \
1353      "\nOptions:" \
1354         IF_FEATURE_FTPGETPUT_LONG_OPTIONS( \
1355      "\n        -c,--continue   Continue previous transfer" \
1356      "\n        -v,--verbose    Verbose" \
1357      "\n        -u,--username   Username" \
1358      "\n        -p,--password   Password" \
1359      "\n        -P,--port       Port number" \
1360         ) \
1361         IF_NOT_FEATURE_FTPGETPUT_LONG_OPTIONS( \
1362      "\n        -c      Continue previous transfer" \
1363      "\n        -v      Verbose" \
1364      "\n        -u      Username" \
1365      "\n        -p      Password" \
1366      "\n        -P      Port number" \
1367         )
1368
1369 #define ftpput_trivial_usage \
1370        "[OPTIONS] HOST REMOTE_FILE LOCAL_FILE"
1371 #define ftpput_full_usage "\n\n" \
1372        "Store a local file on a remote machine via FTP\n" \
1373      "\nOptions:" \
1374         IF_FEATURE_FTPGETPUT_LONG_OPTIONS( \
1375      "\n        -v,--verbose    Verbose" \
1376      "\n        -u,--username   Username" \
1377      "\n        -p,--password   Password" \
1378      "\n        -P,--port       Port number" \
1379         ) \
1380         IF_NOT_FEATURE_FTPGETPUT_LONG_OPTIONS( \
1381      "\n        -v      Verbose" \
1382      "\n        -u      Username" \
1383      "\n        -p      Password" \
1384      "\n        -P      Port number" \
1385         )
1386
1387 #define fuser_trivial_usage \
1388        "[OPTIONS] FILE or PORT/PROTO"
1389 #define fuser_full_usage "\n\n" \
1390        "Find processes which use FILEs or PORTs\n" \
1391      "\nOptions:" \
1392      "\n        -m      Find processes which use same fs as FILEs" \
1393      "\n        -4      Search only IPv4 space" \
1394      "\n        -6      Search only IPv6 space" \
1395      "\n        -s      Silent: just exit with 0 if any processes are found" \
1396      "\n        -k      Kill found processes (otherwise display PIDs)" \
1397      "\n        -SIGNAL Signal to send (default: TERM)" \
1398
1399 #define getenforce_trivial_usage NOUSAGE_STR
1400 #define getenforce_full_usage ""
1401
1402 #define getopt_trivial_usage \
1403        "[OPTIONS]"
1404 #define getopt_full_usage "\n\n" \
1405        "Parse options\n" \
1406         IF_LONG_OPTS( \
1407      "\n        -a,--alternative                Allow long options starting with single -" \
1408      "\n        -l,--longoptions=longopts       Long options to be recognized" \
1409      "\n        -n,--name=progname              The name under which errors are reported" \
1410      "\n        -o,--options=optstring          Short options to be recognized" \
1411      "\n        -q,--quiet                      Disable error reporting by getopt(3)" \
1412      "\n        -Q,--quiet-output               No normal output" \
1413      "\n        -s,--shell=shell                Set shell quoting conventions" \
1414      "\n        -T,--test                       Test for getopt(1) version" \
1415      "\n        -u,--unquoted                   Don't quote the output" \
1416         ) \
1417         IF_NOT_LONG_OPTS( \
1418      "\n        -a              Allow long options starting with single -" \
1419      "\n        -l longopts     Long options to be recognized" \
1420      "\n        -n progname     The name under which errors are reported" \
1421      "\n        -o optstring    Short options to be recognized" \
1422      "\n        -q              Disable error reporting by getopt(3)" \
1423      "\n        -Q              No normal output" \
1424      "\n        -s shell        Set shell quoting conventions" \
1425      "\n        -T              Test for getopt(1) version" \
1426      "\n        -u              Don't quote the output" \
1427         )
1428 #define getopt_example_usage \
1429        "$ cat getopt.test\n" \
1430        "#!/bin/sh\n" \
1431        "GETOPT=`getopt -o ab:c:: --long a-long,b-long:,c-long:: \\\n" \
1432        "       -n 'example.busybox' -- \"$@\"`\n" \
1433        "if [ $? != 0 ]; then  exit 1; fi\n" \
1434        "eval set -- \"$GETOPT\"\n" \
1435        "while true; do\n" \
1436        " case $1 in\n" \
1437        "   -a|--a-long) echo \"Option a\"; shift;;\n" \
1438        "   -b|--b-long) echo \"Option b, argument '$2'\"; shift 2;;\n" \
1439        "   -c|--c-long)\n" \
1440        "     case \"$2\" in\n" \
1441        "       \"\") echo \"Option c, no argument\"; shift 2;;\n" \
1442        "       *)  echo \"Option c, argument '$2'\"; shift 2;;\n" \
1443        "     esac;;\n" \
1444        "   --) shift; break;;\n" \
1445        "   *) echo \"Internal error!\"; exit 1;;\n" \
1446        " esac\n" \
1447        "done\n"
1448
1449 #define getsebool_trivial_usage \
1450        "-a or getsebool boolean..."
1451 #define getsebool_full_usage "\n\n" \
1452        "        -a      Show all SELinux booleans"
1453
1454 #define getty_trivial_usage \
1455        "[OPTIONS] BAUD_RATE TTY [TERMTYPE]"
1456 #define getty_full_usage "\n\n" \
1457        "Open a tty, prompt for a login name, then invoke /bin/login\n" \
1458      "\nOptions:" \
1459      "\n        -h              Enable hardware (RTS/CTS) flow control" \
1460      "\n        -i              Do not display /etc/issue before running login" \
1461      "\n        -L              Local line, do not do carrier detect" \
1462      "\n        -m              Get baud rate from modem's CONNECT status message" \
1463      "\n        -w              Wait for a CR or LF before sending /etc/issue" \
1464      "\n        -n              Do not prompt the user for a login name" \
1465      "\n        -f issue_file   Display issue_file instead of /etc/issue" \
1466      "\n        -l login_app    Invoke login_app instead of /bin/login" \
1467      "\n        -t timeout      Terminate after timeout if no username is read" \
1468      "\n        -I initstring   Init string to send before anything else" \
1469      "\n        -H login_host   Log login_host into the utmp file as the hostname" \
1470
1471 #define grep_trivial_usage \
1472        "[-HhrilLnqvso" \
1473         IF_DESKTOP("w") \
1474        "eF" \
1475         IF_FEATURE_GREP_EGREP_ALIAS("E") \
1476         IF_FEATURE_GREP_CONTEXT("ABC") \
1477         IF_EXTRA_COMPAT("z") \
1478        "] PATTERN [FILE]..."
1479 #define grep_full_usage "\n\n" \
1480        "Search for PATTERN in each FILE or standard input\n" \
1481      "\nOptions:" \
1482      "\n        -H      Prefix output lines with filename where match was found" \
1483      "\n        -h      Suppress the prefixing filename on output" \
1484      "\n        -r      Recurse subdirectories" \
1485      "\n        -i      Ignore case distinctions" \
1486      "\n        -l      List names of files that match" \
1487      "\n        -L      List names of files that do not match" \
1488      "\n        -n      Print line number with output lines" \
1489      "\n        -q      Quiet. Return 0 if PATTERN is found, 1 otherwise" \
1490      "\n        -v      Select non-matching lines" \
1491      "\n        -s      Suppress file open/read error messages" \
1492      "\n        -c      Only print count of matching lines" \
1493      "\n        -o      Show only the part of a line that matches PATTERN" \
1494      "\n        -m MAX  Match up to MAX times per file" \
1495         IF_DESKTOP( \
1496      "\n        -w      Match whole words only") \
1497      "\n        -F      PATTERN is a set of newline-separated strings" \
1498         IF_FEATURE_GREP_EGREP_ALIAS( \
1499      "\n        -E      PATTERN is an extended regular expression") \
1500      "\n        -e PTRN Pattern to match" \
1501      "\n        -f FILE Read pattern from file" \
1502         IF_FEATURE_GREP_CONTEXT( \
1503      "\n        -A      Print NUM lines of trailing context" \
1504      "\n        -B      Print NUM lines of leading context" \
1505      "\n        -C      Print NUM lines of output context") \
1506         IF_EXTRA_COMPAT( \
1507      "\n        -z      Input is NUL terminated") \
1508
1509 #define grep_example_usage \
1510        "$ grep root /etc/passwd\n" \
1511        "root:x:0:0:root:/root:/bin/bash\n" \
1512        "$ grep ^[rR]oo. /etc/passwd\n" \
1513        "root:x:0:0:root:/root:/bin/bash\n"
1514
1515 #define egrep_trivial_usage NOUSAGE_STR
1516 #define egrep_full_usage ""
1517
1518 #define fgrep_trivial_usage NOUSAGE_STR
1519 #define fgrep_full_usage ""
1520
1521 #define gunzip_trivial_usage \
1522        "[OPTIONS] [FILE]..."
1523 #define gunzip_full_usage "\n\n" \
1524        "Uncompress FILEs (or standard input)\n" \
1525      "\nOptions:" \
1526      "\n        -c      Write to standard output" \
1527      "\n        -f      Force" \
1528      "\n        -t      Test file integrity" \
1529
1530 #define gunzip_example_usage \
1531        "$ ls -la /tmp/BusyBox*\n" \
1532        "-rw-rw-r--    1 andersen andersen   557009 Apr 11 10:55 /tmp/BusyBox-0.43.tar.gz\n" \
1533        "$ gunzip /tmp/BusyBox-0.43.tar.gz\n" \
1534        "$ ls -la /tmp/BusyBox*\n" \
1535        "-rw-rw-r--    1 andersen andersen  1761280 Apr 14 17:47 /tmp/BusyBox-0.43.tar\n"
1536
1537 #define gzip_trivial_usage \
1538        "[OPTIONS] [FILE]..."
1539 #define gzip_full_usage "\n\n" \
1540        "Compress FILEs (or standard input)\n" \
1541      "\nOptions:" \
1542      "\n        -c      Write to standard output" \
1543      "\n        -d      Decompress" \
1544      "\n        -f      Force" \
1545
1546 #define gzip_example_usage \
1547        "$ ls -la /tmp/busybox*\n" \
1548        "-rw-rw-r--    1 andersen andersen  1761280 Apr 14 17:47 /tmp/busybox.tar\n" \
1549        "$ gzip /tmp/busybox.tar\n" \
1550        "$ ls -la /tmp/busybox*\n" \
1551        "-rw-rw-r--    1 andersen andersen   554058 Apr 14 17:49 /tmp/busybox.tar.gz\n"
1552
1553 #define halt_trivial_usage \
1554        "[-d delay] [-n] [-f]" IF_FEATURE_WTMP(" [-w]")
1555 #define halt_full_usage "\n\n" \
1556        "Halt the system\n" \
1557      "\nOptions:" \
1558      "\n        -d      Delay interval for halting" \
1559      "\n        -n      No call to sync()" \
1560      "\n        -f      Force halt (don't go through init)" \
1561         IF_FEATURE_WTMP( \
1562      "\n        -w      Only write a wtmp record" \
1563         )
1564
1565 #define hdparm_trivial_usage \
1566        "[OPTIONS] [DEVICE]"
1567 #define hdparm_full_usage "\n\n" \
1568        "Options:" \
1569      "\n        -a      Get/set fs readahead" \
1570      "\n        -A      Set drive read-lookahead flag (0/1)" \
1571      "\n        -b      Get/set bus state (0 == off, 1 == on, 2 == tristate)" \
1572      "\n        -B      Set Advanced Power Management setting (1-255)" \
1573      "\n        -c      Get/set IDE 32-bit IO setting" \
1574      "\n        -C      Check IDE power mode status" \
1575         IF_FEATURE_HDPARM_HDIO_GETSET_DMA( \
1576      "\n        -d      Get/set using_dma flag") \
1577      "\n        -D      Enable/disable drive defect-mgmt" \
1578      "\n        -f      Flush buffer cache for device on exit" \
1579      "\n        -g      Display drive geometry" \
1580      "\n        -h      Display terse usage information" \
1581         IF_FEATURE_HDPARM_GET_IDENTITY( \
1582      "\n        -i      Display drive identification") \
1583         IF_FEATURE_HDPARM_GET_IDENTITY( \
1584      "\n        -I      Detailed/current information directly from drive") \
1585      "\n        -k      Get/set keep_settings_over_reset flag (0/1)" \
1586      "\n        -K      Set drive keep_features_over_reset flag (0/1)" \
1587      "\n        -L      Set drive doorlock (0/1) (removable harddisks only)" \
1588      "\n        -m      Get/set multiple sector count" \
1589      "\n        -n      Get/set ignore-write-errors flag (0/1)" \
1590      "\n        -p      Set PIO mode on IDE interface chipset (0,1,2,3,4,...)" \
1591      "\n        -P      Set drive prefetch count" \
1592 /*   "\n        -q      Change next setting quietly" - not supported ib bbox */ \
1593      "\n        -Q      Get/set DMA tagged-queuing depth (if supported)" \
1594      "\n        -r      Get/set readonly flag (DANGEROUS to set)" \
1595         IF_FEATURE_HDPARM_HDIO_SCAN_HWIF( \
1596      "\n        -R      Register an IDE interface (DANGEROUS)") \
1597      "\n        -S      Set standby (spindown) timeout" \
1598      "\n        -t      Perform device read timings" \
1599      "\n        -T      Perform cache read timings" \
1600      "\n        -u      Get/set unmaskirq flag (0/1)" \
1601         IF_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF( \
1602      "\n        -U      Un-register an IDE interface (DANGEROUS)") \
1603      "\n        -v      Defaults; same as -mcudkrag for IDE drives" \
1604      "\n        -V      Display program version and exit immediately" \
1605         IF_FEATURE_HDPARM_HDIO_DRIVE_RESET( \
1606      "\n        -w      Perform device reset (DANGEROUS)") \
1607      "\n        -W      Set drive write-caching flag (0/1) (DANGEROUS)" \
1608         IF_FEATURE_HDPARM_HDIO_TRISTATE_HWIF( \
1609      "\n        -x      Tristate device for hotswap (0/1) (DANGEROUS)") \
1610      "\n        -X      Set IDE xfer mode (DANGEROUS)" \
1611      "\n        -y      Put IDE drive in standby mode" \
1612      "\n        -Y      Put IDE drive to sleep" \
1613      "\n        -Z      Disable Seagate auto-powersaving mode" \
1614      "\n        -z      Re-read partition table" \
1615
1616 #define head_trivial_usage \
1617        "[OPTIONS] [FILE]..."
1618 #define head_full_usage "\n\n" \
1619        "Print first 10 lines of each FILE to standard output.\n" \
1620        "With more than one FILE, precede each with a header giving the\n" \
1621        "file name. With no FILE, or when FILE is -, read standard input.\n" \
1622      "\nOptions:" \
1623      "\n        -n NUM  Print first NUM lines instead of first 10" \
1624         IF_FEATURE_FANCY_HEAD( \
1625      "\n        -c NUM  Output the first NUM bytes" \
1626      "\n        -q      Never output headers giving file names" \
1627      "\n        -v      Always output headers giving file names") \
1628
1629 #define head_example_usage \
1630        "$ head -n 2 /etc/passwd\n" \
1631        "root:x:0:0:root:/root:/bin/bash\n" \
1632        "daemon:x:1:1:daemon:/usr/sbin:/bin/sh\n"
1633
1634 #define hexdump_trivial_usage \
1635        "[-bcCdefnosvx" IF_FEATURE_HEXDUMP_REVERSE("R") "] FILE..."
1636 #define hexdump_full_usage "\n\n" \
1637        "Display file(s) or standard input in a user specified format\n" \
1638      "\nOptions:" \
1639      "\n        -b              One-byte octal display" \
1640      "\n        -c              One-byte character display" \
1641      "\n        -C              Canonical hex+ASCII, 16 bytes per line" \
1642      "\n        -d              Two-byte decimal display" \
1643      "\n        -e FORMAT STRING" \
1644      "\n        -f FORMAT FILE" \
1645      "\n        -n LENGTH       Interpret only LENGTH bytes of input" \
1646      "\n        -o              Two-byte octal display" \
1647      "\n        -s OFFSET       Skip OFFSET bytes" \
1648      "\n        -v              Display all input data" \
1649      "\n        -x              Two-byte hexadecimal display" \
1650         IF_FEATURE_HEXDUMP_REVERSE( \
1651      "\n        -R              Reverse of 'hexdump -Cv'") \
1652
1653 #define hd_trivial_usage \
1654        "FILE..."
1655 #define hd_full_usage "\n\n" \
1656        "hd is an alias for hexdump -C"
1657
1658 #define hostid_trivial_usage \
1659        ""
1660 #define hostid_full_usage "\n\n" \
1661        "Print out a unique 32-bit identifier for the machine"
1662
1663 #define hostname_trivial_usage \
1664        "[OPTIONS] [HOSTNAME | -F FILE]"
1665 #define hostname_full_usage "\n\n" \
1666        "Get or set hostname or DNS domain name\n" \
1667      "\nOptions:" \
1668      "\n        -s      Short" \
1669      "\n        -i      Addresses for the hostname" \
1670      "\n        -d      DNS domain name" \
1671      "\n        -f      Fully qualified domain name" \
1672      "\n        -F FILE Use FILE's content as hostname" \
1673
1674 #define hostname_example_usage \
1675        "$ hostname\n" \
1676        "sage\n"
1677
1678 #define dnsdomainname_trivial_usage NOUSAGE_STR
1679 #define dnsdomainname_full_usage ""
1680
1681 #define httpd_trivial_usage \
1682        "[-ifv[v]]" \
1683        " [-c CONFFILE]" \
1684        " [-p [IP:]PORT]" \
1685         IF_FEATURE_HTTPD_SETUID(" [-u USER[:GRP]]") \
1686         IF_FEATURE_HTTPD_BASIC_AUTH(" [-r REALM]") \
1687        " [-h HOME]\n" \
1688        "or httpd -d/-e" IF_FEATURE_HTTPD_AUTH_MD5("/-m") " STRING"
1689 #define httpd_full_usage "\n\n" \
1690        "Listen for incoming HTTP requests\n" \
1691      "\nOptions:" \
1692      "\n        -i              Inetd mode" \
1693      "\n        -f              Do not daemonize" \
1694      "\n        -v[v]           Verbose" \
1695      "\n        -c FILE         Configuration file (default httpd.conf)" \
1696      "\n        -p [IP:]PORT    Bind to ip:port (default *:80)" \
1697         IF_FEATURE_HTTPD_SETUID( \
1698      "\n        -u USER[:GRP]   Set uid/gid after binding to port") \
1699         IF_FEATURE_HTTPD_BASIC_AUTH( \
1700      "\n        -r REALM        Authentication Realm for Basic Authentication") \
1701      "\n        -h HOME         Home directory (default .)" \
1702         IF_FEATURE_HTTPD_AUTH_MD5( \
1703      "\n        -m STRING       MD5 crypt STRING") \
1704      "\n        -e STRING       HTML encode STRING" \
1705      "\n        -d STRING       URL decode STRING" \
1706
1707 #define hwclock_trivial_usage \
1708         IF_FEATURE_HWCLOCK_LONG_OPTIONS( \
1709        "[-r|--show] [-s|--hctosys] [-w|--systohc]" \
1710        " [-l|--localtime] [-u|--utc]" \
1711        " [-f FILE]" \
1712         ) \
1713         IF_NOT_FEATURE_HWCLOCK_LONG_OPTIONS( \
1714        "[-r] [-s] [-w] [-l] [-u] [-f FILE]" \
1715         )
1716 #define hwclock_full_usage "\n\n" \
1717        "Query and set hardware clock (RTC)\n" \
1718      "\nOptions:" \
1719      "\n        -r      Show hardware clock time" \
1720      "\n        -s      Set system time from hardware clock" \
1721      "\n        -w      Set hardware clock to system time" \
1722      "\n        -u      Hardware clock is in UTC" \
1723      "\n        -l      Hardware clock is in local time" \
1724      "\n        -f FILE Use specified device (e.g. /dev/rtc2)" \
1725
1726 #define id_trivial_usage \
1727        "[OPTIONS] [USER]"
1728 #define id_full_usage "\n\n" \
1729        "Print information about USER or the current user\n" \
1730      "\nOptions:" \
1731         IF_SELINUX( \
1732      "\n        -Z      Print the security context" \
1733         ) \
1734      "\n        -u      Print user ID" \
1735      "\n        -g      Print group ID" \
1736      "\n        -G      Print supplementary group IDs" \
1737      "\n        -n      Print name instead of a number" \
1738      "\n        -r      Print real user ID instead of effective ID" \
1739
1740 #define id_example_usage \
1741        "$ id\n" \
1742        "uid=1000(andersen) gid=1000(andersen)\n"
1743
1744 #define ifconfig_trivial_usage \
1745         IF_FEATURE_IFCONFIG_STATUS("[-a]") " interface [address]"
1746 #define ifconfig_full_usage "\n\n" \
1747        "Configure a network interface\n" \
1748      "\nOptions:" \
1749      "\n" \
1750         IF_FEATURE_IPV6( \
1751        "        [add ADDRESS[/PREFIXLEN]]\n") \
1752         IF_FEATURE_IPV6( \
1753        "        [del ADDRESS[/PREFIXLEN]]\n") \
1754        "        [[-]broadcast [ADDRESS]] [[-]pointopoint [ADDRESS]]\n" \
1755        "        [netmask ADDRESS] [dstaddr ADDRESS]\n" \
1756         IF_FEATURE_IFCONFIG_SLIP( \
1757        "        [outfill NN] [keepalive NN]\n") \
1758        "        " IF_FEATURE_IFCONFIG_HW("[hw ether" IF_FEATURE_HWIB("|infiniband")" ADDRESS] ") "[metric NN] [mtu NN]\n" \
1759        "        [[-]trailers] [[-]arp] [[-]allmulti]\n" \
1760        "        [multicast] [[-]promisc] [txqueuelen NN] [[-]dynamic]\n" \
1761         IF_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ( \
1762        "        [mem_start NN] [io_addr NN] [irq NN]\n") \
1763        "        [up|down] ..."
1764
1765 #define ifenslave_trivial_usage \
1766        "[-cdf] master-iface <slave-iface...>"
1767 #define ifenslave_full_usage "\n\n" \
1768        "Configure network interfaces for parallel routing\n" \
1769      "\nOptions:" \
1770      "\n        -c, --change-active     Change active slave" \
1771      "\n        -d, --detach            Remove slave interface from bonding device" \
1772      "\n        -f, --force             Force, even if interface is not Ethernet" \
1773 /*   "\n        -r, --receive-slave     Create a receive-only slave" */
1774
1775 #define ifenslave_example_usage \
1776        "To create a bond device, simply follow these three steps:\n" \
1777        "- ensure that the required drivers are properly loaded:\n" \
1778        "  # modprobe bonding ; modprobe <3c59x|eepro100|pcnet32|tulip|...>\n" \
1779        "- assign an IP address to the bond device:\n" \
1780        "  # ifconfig bond0 <addr> netmask <mask> broadcast <bcast>\n" \
1781        "- attach all the interfaces you need to the bond device:\n" \
1782        "  # ifenslave bond0 eth0 eth1 eth2\n" \
1783        "  If bond0 didn't have a MAC address, it will take eth0's. Then, all\n" \
1784        "  interfaces attached AFTER this assignment will get the same MAC addr.\n\n" \
1785        "  To detach a dead interface without setting the bond device down:\n" \
1786        "  # ifenslave -d bond0 eth1\n\n" \
1787        "  To set the bond device down and automatically release all the slaves:\n" \
1788        "  # ifconfig bond0 down\n\n" \
1789        "  To change active slave:\n" \
1790        "  # ifenslave -c bond0 eth0\n" \
1791
1792 #define ifplugd_trivial_usage \
1793        "[OPTIONS]"
1794 #define ifplugd_full_usage "\n\n" \
1795        "Network interface plug detection daemon.\n\n" \
1796        "Options:\n" \
1797      "\n        -n              Do not daemonize" \
1798      "\n        -s              Do not log to syslog" \
1799      "\n        -i IFACE        Interface" \
1800      "\n        -f/-F           Treat link detection error as link down/link up" \
1801      "\n                        (otherwise exit on error)" \
1802      "\n        -a              Do not up interface automatically" \
1803      "\n        -M              Monitor creation/destruction of interface" \
1804      "\n                        (otherwise it must exist)" \
1805      "\n        -r PROG         Script to run" \
1806      "\n        -x ARG          Extra argument for script" \
1807      "\n        -I              Don't exit on nonzero exit code from script" \
1808      "\n        -p              Don't run script on daemon startup" \
1809      "\n        -q              Don't run script on daemon quit" \
1810      "\n        -l              Run script on startup even if no cable is detected" \
1811      "\n        -t SECS         Poll time in seconds" \
1812      "\n        -u SECS         Delay before running script after link up" \
1813      "\n        -d SECS         Delay after link down" \
1814      "\n        -m MODE         API mode (mii, priv, ethtool, wlan, auto)" \
1815      "\n        -k              Kill running daemon" \
1816
1817 #define ifup_trivial_usage \
1818        "[-ain"IF_FEATURE_IFUPDOWN_MAPPING("m")"vf] ifaces..."
1819 #define ifup_full_usage "\n\n" \
1820        "Options:" \
1821      "\n        -a      De/configure all interfaces automatically" \
1822      "\n        -i FILE Use FILE for interface definitions" \
1823      "\n        -n      Print out what would happen, but don't do it" \
1824         IF_FEATURE_IFUPDOWN_MAPPING( \
1825      "\n                (note: doesn't disable mappings)" \
1826      "\n        -m      Don't run any mappings" \
1827         ) \
1828      "\n        -v      Print out what would happen before doing it" \
1829      "\n        -f      Force de/configuration" \
1830
1831 #define ifdown_trivial_usage \
1832        "[-ain"IF_FEATURE_IFUPDOWN_MAPPING("m")"vf] ifaces..."
1833 #define ifdown_full_usage "\n\n" \
1834        "Options:" \
1835      "\n        -a      De/configure all interfaces automatically" \
1836      "\n        -i FILE Use FILE for interface definitions" \
1837      "\n        -n      Print out what would happen, but don't do it" \
1838         IF_FEATURE_IFUPDOWN_MAPPING( \
1839      "\n                (note: doesn't disable mappings)" \
1840      "\n        -m      Don't run any mappings" \
1841         ) \
1842      "\n        -v      Print out what would happen before doing it" \
1843      "\n        -f      Force de/configuration" \
1844
1845 #define inetd_trivial_usage \
1846        "[-fe] [-q N] [-R N] [CONFFILE]"
1847 #define inetd_full_usage "\n\n" \
1848        "Listen for network connections and launch programs\n" \
1849      "\nOptions:" \
1850      "\n        -f      Run in foreground" \
1851      "\n        -e      Log to stderr" \
1852      "\n        -q N    Socket listen queue (default: 128)" \
1853      "\n        -R N    Pause services after N connects/min" \
1854      "\n                (default: 0 - disabled)" \
1855
1856 #define init_trivial_usage \
1857        ""
1858 #define init_full_usage "\n\n" \
1859        "Init is the parent of all processes"
1860
1861 #define init_notes_usage \
1862 "This version of init is designed to be run only by the kernel.\n" \
1863 "\n" \
1864 "BusyBox init doesn't support multiple runlevels. The runlevels field of\n" \
1865 "the /etc/inittab file is completely ignored by BusyBox init. If you want\n" \
1866 "runlevels, use sysvinit.\n" \
1867 "\n" \
1868 "BusyBox init works just fine without an inittab. If no inittab is found,\n" \
1869 "it has the following default behavior:\n" \
1870 "\n" \
1871 "       ::sysinit:/etc/init.d/rcS\n" \
1872 "       ::askfirst:/bin/sh\n" \
1873 "       ::ctrlaltdel:/sbin/reboot\n" \
1874 "       ::shutdown:/sbin/swapoff -a\n" \
1875 "       ::shutdown:/bin/umount -a -r\n" \
1876 "       ::restart:/sbin/init\n" \
1877 "\n" \
1878 "if it detects that /dev/console is _not_ a serial console, it will also run:\n" \
1879 "\n" \
1880 "       tty2::askfirst:/bin/sh\n" \
1881 "       tty3::askfirst:/bin/sh\n" \
1882 "       tty4::askfirst:/bin/sh\n" \
1883 "\n" \
1884 "If you choose to use an /etc/inittab file, the inittab entry format is as follows:\n" \
1885 "\n" \
1886 "       <id>:<runlevels>:<action>:<process>\n" \
1887 "\n" \
1888 "       <id>:\n" \
1889 "\n" \
1890 "               WARNING: This field has a non-traditional meaning for BusyBox init!\n" \
1891 "               The id field is used by BusyBox init to specify the controlling tty for\n" \
1892 "               the specified process to run on. The contents of this field are\n" \
1893 "               appended to \"/dev/\" and used as-is. There is no need for this field to\n" \
1894 "               be unique, although if it isn't you may have strange results. If this\n" \
1895 "               field is left blank, the controlling tty is set to the console. Also\n" \
1896 "               note that if BusyBox detects that a serial console is in use, then only\n" \
1897 "               entries whose controlling tty is either the serial console or /dev/null\n" \
1898 "               will be run. BusyBox init does nothing with utmp. We don't need no\n" \
1899 "               stinkin' utmp.\n" \
1900 "\n" \
1901 "       <runlevels>:\n" \
1902 "\n" \
1903 "               The runlevels field is completely ignored.\n" \
1904 "\n" \
1905 "       <action>:\n" \
1906 "\n" \
1907 "               Valid actions include: sysinit, respawn, askfirst, wait,\n" \
1908 "               once, restart, ctrlaltdel, and shutdown.\n" \
1909 "\n" \
1910 "               The available actions can be classified into two groups: actions\n" \
1911 "               that are run only once, and actions that are re-run when the specified\n" \
1912 "               process exits.\n" \
1913 "\n" \
1914 "               Run only-once actions:\n" \
1915 "\n" \
1916 "                       'sysinit' is the first item run on boot. init waits until all\n" \
1917 "                       sysinit actions are completed before continuing. Following the\n" \
1918 "                       completion of all sysinit actions, all 'wait' actions are run.\n" \
1919 "                       'wait' actions, like 'sysinit' actions, cause init to wait until\n" \
1920 "                       the specified task completes. 'once' actions are asynchronous,\n" \
1921 "                       therefore, init does not wait for them to complete. 'restart' is\n" \
1922 "                       the action taken to restart the init process. By default this should\n" \
1923 "                       simply run /sbin/init, but can be a script which runs pivot_root or it\n" \
1924 "                       can do all sorts of other interesting things. The 'ctrlaltdel' init\n" \
1925 "                       actions are run when the system detects that someone on the system\n" \
1926 "                       console has pressed the CTRL-ALT-DEL key combination. Typically one\n" \
1927 "                       wants to run 'reboot' at this point to cause the system to reboot.\n" \
1928 "                       Finally the 'shutdown' action specifies the actions to taken when\n" \
1929 "                       init is told to reboot. Unmounting filesystems and disabling swap\n" \
1930 "                       is a very good here.\n" \
1931 "\n" \
1932 "               Run repeatedly actions:\n" \
1933 "\n" \
1934 "                       'respawn' actions are run after the 'once' actions. When a process\n" \
1935 "                       started with a 'respawn' action exits, init automatically restarts\n" \
1936 "                       it. Unlike sysvinit, BusyBox init does not stop processes from\n" \
1937 "                       respawning out of control. The 'askfirst' actions acts just like\n" \
1938 "                       respawn, except that before running the specified process it\n" \
1939 "                       displays the line \"Please press Enter to activate this console.\"\n" \
1940 "                       and then waits for the user to press enter before starting the\n" \
1941 "                       specified process.\n" \
1942 "\n" \
1943 "               Unrecognized actions (like initdefault) will cause init to emit an\n" \
1944 "               error message, and then go along with its business. All actions are\n" \
1945 "               run in the order they appear in /etc/inittab.\n" \
1946 "\n" \
1947 "       <process>:\n" \
1948 "\n" \
1949 "               Specifies the process to be executed and its command line.\n" \
1950 "\n" \
1951 "Example /etc/inittab file:\n" \
1952 "\n" \
1953 "       # This is run first except when booting in single-user mode\n" \
1954 "       #\n" \
1955 "       ::sysinit:/etc/init.d/rcS\n" \
1956 "       \n" \
1957 "       # /bin/sh invocations on selected ttys\n" \
1958 "       #\n" \
1959 "       # Start an \"askfirst\" shell on the console (whatever that may be)\n" \
1960 "       ::askfirst:-/bin/sh\n" \
1961 "       # Start an \"askfirst\" shell on /dev/tty2-4\n" \
1962 "       tty2::askfirst:-/bin/sh\n" \
1963 "       tty3::askfirst:-/bin/sh\n" \
1964 "       tty4::askfirst:-/bin/sh\n" \
1965 "       \n" \
1966 "       # /sbin/getty invocations for selected ttys\n" \
1967 "       #\n" \
1968 "       tty4::respawn:/sbin/getty 38400 tty4\n" \
1969 "       tty5::respawn:/sbin/getty 38400 tty5\n" \
1970 "       \n" \
1971 "       \n" \
1972 "       # Example of how to put a getty on a serial line (for a terminal)\n" \
1973 "       #\n" \
1974 "       #::respawn:/sbin/getty -L ttyS0 9600 vt100\n" \
1975 "       #::respawn:/sbin/getty -L ttyS1 9600 vt100\n" \
1976 "       #\n" \
1977 "       # Example how to put a getty on a modem line\n" \
1978 "       #::respawn:/sbin/getty 57600 ttyS2\n" \
1979 "       \n" \
1980 "       # Stuff to do when restarting the init process\n" \
1981 "       ::restart:/sbin/init\n" \
1982 "       \n" \
1983 "       # Stuff to do before rebooting\n" \
1984 "       ::ctrlaltdel:/sbin/reboot\n" \
1985 "       ::shutdown:/bin/umount -a -r\n" \
1986 "       ::shutdown:/sbin/swapoff -a\n"
1987
1988 #define inotifyd_trivial_usage \
1989         "PROG FILE1[:MASK] ..."
1990 #define inotifyd_full_usage "\n\n" \
1991        "Run PROG on filesystem changes." \
1992      "\nWhen a filesystem event matching MASK occurs on FILEn," \
1993      "\nPROG <actual_event(s)> <FILEn> [<subfile_name>] is run." \
1994      "\nEvents:" \
1995      "\n        a       File is accessed" \
1996      "\n        c       File is modified" \
1997      "\n        e       Metadata changed" \
1998      "\n        w       Writtable file is closed" \
1999      "\n        0       Unwrittable file is closed" \
2000      "\n        r       File is opened" \
2001      "\n        D       File is deleted" \
2002      "\n        M       File is moved" \
2003      "\n        u       Backing fs is unmounted" \
2004      "\n        o       Event queue overflowed" \
2005      "\n        x       File can't be watched anymore" \
2006      "\nIf watching a directory:" \
2007      "\n        m       Subfile is moved into dir" \
2008      "\n        y       Subfile is moved out of dir" \
2009      "\n        n       Subfile is created" \
2010      "\n        d       Subfile is deleted" \
2011      "\n" \
2012      "\ninotifyd waits for PROG to exit." \
2013      "\nWhen x event happens for all FILEs, inotifyd exits" \
2014
2015 /* 2.6 style insmod has no options and required filename
2016  * (not module name - .ko can't be omitted) */
2017 #define insmod_trivial_usage \
2018         IF_FEATURE_2_4_MODULES("[OPTIONS] MODULE ") \
2019         IF_NOT_FEATURE_2_4_MODULES("FILE ") \
2020         "[symbol=value]..."
2021 #define insmod_full_usage "\n\n" \
2022        "Load the specified kernel modules into the kernel" \
2023         IF_FEATURE_2_4_MODULES( "\n" \
2024      "\nOptions:" \
2025      "\n        -f      Force module to load into the wrong kernel version" \
2026      "\n        -k      Make module autoclean-able" \
2027      "\n        -v      Verbose" \
2028      "\n        -q      Quiet" \
2029      "\n        -L      Lock to prevent simultaneous loads of a module" \
2030         IF_FEATURE_INSMOD_LOAD_MAP( \
2031      "\n        -m      Output load map to stdout" \
2032         ) \
2033      "\n        -o NAME Set internal module name to NAME" \
2034      "\n        -x      Do not export externs" \
2035         )
2036
2037 /* -v, -b, -c are ignored */
2038 #define install_trivial_usage \
2039         "[-cdDsp] [-o USER] [-g GRP] [-m MODE] [source] dest|directory"
2040 #define install_full_usage "\n\n" \
2041        "Copy files and set attributes\n" \
2042      "\nOptions:" \
2043      "\n        -c      Just copy (default)" \
2044      "\n        -d      Create directories" \
2045      "\n        -D      Create leading target directories" \
2046      "\n        -s      Strip symbol table" \
2047      "\n        -p      Preserve date" \
2048      "\n        -o USER Set ownership" \
2049      "\n        -g GRP  Set group ownership" \
2050      "\n        -m MODE Set permissions" \
2051         IF_SELINUX( \
2052      "\n        -Z      Set security context" \
2053         )
2054
2055 #define ionice_trivial_usage \
2056         "[-c 1-3] [-n 0-7] [-p PID] [PROG]"
2057 #define ionice_full_usage "\n\n" \
2058        "Change I/O scheduling class and priority\n" \
2059      "\nOptions:" \
2060      "\n        -c      Class. 1:realtime 2:best-effort 3:idle" \
2061      "\n        -n      Priority" \
2062
2063 /* would need to make the " | " optional depending on more than one selected: */
2064 #define ip_trivial_usage \
2065        "[OPTIONS] {" \
2066         IF_FEATURE_IP_ADDRESS("address | ") \
2067         IF_FEATURE_IP_ROUTE("route | ") \
2068         IF_FEATURE_IP_LINK("link | ") \
2069         IF_FEATURE_IP_TUNNEL("tunnel | ") \
2070         IF_FEATURE_IP_RULE("rule") \
2071        "} {COMMAND}"
2072 #define ip_full_usage "\n\n" \
2073        "ip [OPTIONS] OBJECT {COMMAND}\n" \
2074        "where OBJECT := {" \
2075         IF_FEATURE_IP_ADDRESS("address | ") \
2076         IF_FEATURE_IP_ROUTE("route | ") \
2077         IF_FEATURE_IP_LINK("link | ") \
2078         IF_FEATURE_IP_TUNNEL("tunnel | ") \
2079         IF_FEATURE_IP_RULE("rule") \
2080        "}\n" \
2081        "OPTIONS := { -f[amily] { inet | inet6 | link } | -o[neline] }" \
2082
2083 #define ipaddr_trivial_usage \
2084        "{ {add|del} IFADDR dev STRING | {show|flush}\n" \
2085        "                [dev STRING] [to PREFIX] }"
2086 #define ipaddr_full_usage "\n\n" \
2087        "ipaddr {add|delete} IFADDR dev STRING\n" \
2088        "ipaddr {show|flush} [dev STRING] [scope SCOPE-ID]\n" \
2089        "        [to PREFIX] [label PATTERN]\n" \
2090        "        IFADDR := PREFIX | ADDR peer PREFIX\n" \
2091        "        [broadcast ADDR] [anycast ADDR]\n" \
2092        "        [label STRING] [scope SCOPE-ID]\n" \
2093        "        SCOPE-ID := [host | link | global | NUMBER]" \
2094
2095 #define ipcalc_trivial_usage \
2096        "[OPTIONS] ADDRESS[[/]NETMASK] [NETMASK]"
2097 #define ipcalc_full_usage "\n\n" \
2098        "Calculate IP network settings from a IP address\n" \
2099      "\nOptions:" \
2100         IF_FEATURE_IPCALC_LONG_OPTIONS( \
2101      "\n        -b,--broadcast  Display calculated broadcast address" \
2102      "\n        -n,--network    Display calculated network address" \
2103      "\n        -m,--netmask    Display default netmask for IP" \
2104         IF_FEATURE_IPCALC_FANCY( \
2105      "\n        -p,--prefix     Display the prefix for IP/NETMASK" \
2106      "\n        -h,--hostname   Display first resolved host name" \
2107      "\n        -s,--silent     Don't ever display error messages" \
2108         ) \
2109         ) \
2110         IF_NOT_FEATURE_IPCALC_LONG_OPTIONS( \
2111      "\n        -b      Display calculated broadcast address" \
2112      "\n        -n      Display calculated network address" \
2113      "\n        -m      Display default netmask for IP" \
2114         IF_FEATURE_IPCALC_FANCY( \
2115      "\n        -p      Display the prefix for IP/NETMASK" \
2116      "\n        -h      Display first resolved host name" \
2117      "\n        -s      Don't ever display error messages" \
2118         ) \
2119         )
2120
2121 #define ipcrm_trivial_usage \
2122        "[-MQS key] [-mqs id]"
2123 #define ipcrm_full_usage "\n\n" \
2124        "Upper-case options MQS remove an object by shmkey value.\n" \
2125        "Lower-case options remove an object by shmid value.\n" \
2126      "\nOptions:" \
2127      "\n        -mM     Remove memory segment after last detach" \
2128      "\n        -qQ     Remove message queue" \
2129      "\n        -sS     Remove semaphore" \
2130
2131 #define ipcs_trivial_usage \
2132        "[[-smq] -i shmid] | [[-asmq] [-tcplu]]"
2133 #define ipcs_full_usage "\n\n" \
2134        "        -i      Show specific resource" \
2135      "\nResource specification:" \
2136      "\n        -m      Shared memory segments" \
2137      "\n        -q      Message queues" \
2138      "\n        -s      Semaphore arrays" \
2139      "\n        -a      All (default)" \
2140      "\nOutput format:" \
2141      "\n        -t      Time" \
2142      "\n        -c      Creator" \
2143      "\n        -p      Pid" \
2144      "\n        -l      Limits" \
2145      "\n        -u      Summary" \
2146
2147 #define iplink_trivial_usage \
2148        "{ set DEVICE { up | down | arp { on | off } | show [DEVICE] }"
2149 #define iplink_full_usage "\n\n" \
2150        "iplink set DEVICE { up | down | arp | multicast { on | off } |\n" \
2151        "                        dynamic { on | off } |\n" \
2152        "                        mtu MTU }\n" \
2153        "iplink show [DEVICE]" \
2154
2155 #define iproute_trivial_usage \
2156        "{ list | flush | { add | del | change | append |\n" \
2157        "                replace | monitor } ROUTE }"
2158 #define iproute_full_usage "\n\n" \
2159        "iproute { list | flush } SELECTOR\n" \
2160        "iproute get ADDRESS [from ADDRESS iif STRING]\n" \
2161        "                        [oif STRING]  [tos TOS]\n" \
2162        "iproute { add | del | change | append | replace | monitor } ROUTE\n" \
2163        "                        SELECTOR := [root PREFIX] [match PREFIX] [proto RTPROTO]\n" \
2164        "                        ROUTE := [TYPE] PREFIX [tos TOS] [proto RTPROTO]\n" \
2165        "                                [metric METRIC]" \
2166
2167 #define iprule_trivial_usage \
2168        "{[list | add | del] RULE}"
2169 #define iprule_full_usage "\n\n" \
2170        "iprule [list | add | del] SELECTOR ACTION\n" \
2171        "        SELECTOR := [from PREFIX] [to PREFIX] [tos TOS] [fwmark FWMARK]\n" \
2172        "                        [dev STRING] [pref NUMBER]\n" \
2173        "        ACTION := [table TABLE_ID] [nat ADDRESS]\n" \
2174        "                        [prohibit | reject | unreachable]\n" \
2175        "                        [realms [SRCREALM/]DSTREALM]\n" \
2176        "        TABLE_ID := [local | main | default | NUMBER]" \
2177
2178 #define iptunnel_trivial_usage \
2179        "{ add | change | del | show } [NAME]\n" \
2180        "        [mode { ipip | gre | sit }]\n" \
2181        "        [remote ADDR] [local ADDR] [ttl TTL]"
2182 #define iptunnel_full_usage "\n\n" \
2183        "iptunnel { add | change | del | show } [NAME]\n" \
2184        "        [mode { ipip | gre | sit }] [remote ADDR] [local ADDR]\n" \
2185        "        [[i|o]seq] [[i|o]key KEY] [[i|o]csum]\n" \
2186        "        [ttl TTL] [tos TOS] [[no]pmtudisc] [dev PHYS_DEV]" \
2187
2188 #define kbd_mode_trivial_usage \
2189        "[-a|k|s|u] [-C TTY]"
2190 #define kbd_mode_full_usage "\n\n" \
2191        "Report or set the keyboard mode\n" \
2192      "\nOptions set mode:" \
2193      "\n        -a      Default (ASCII)" \
2194      "\n        -k      Medium-raw (keyboard)" \
2195      "\n        -s      Raw (scancode)" \
2196      "\n        -u      Unicode (utf-8)" \
2197      "\n        -C TTY  Affect TTY instead of /dev/tty" \
2198
2199 #define kill_trivial_usage \
2200        "[-l] [-SIG] PID..."
2201 #define kill_full_usage "\n\n" \
2202        "Send a signal (default is TERM) to given PIDs\n" \
2203      "\nOptions:" \
2204      "\n        -l      List all signal names and numbers" \
2205 /*   "\n        -s SIG  Yet another way of specifying SIG" */ \
2206
2207 #define kill_example_usage \
2208        "$ ps | grep apache\n" \
2209        "252 root     root     S [apache]\n" \
2210        "263 www-data www-data S [apache]\n" \
2211        "264 www-data www-data S [apache]\n" \
2212        "265 www-data www-data S [apache]\n" \
2213        "266 www-data www-data S [apache]\n" \
2214        "267 www-data www-data S [apache]\n" \
2215        "$ kill 252\n"
2216
2217 #define killall_trivial_usage \
2218        "[-l] [-q] [-SIG] process-name..."
2219 #define killall_full_usage "\n\n" \
2220        "Send a signal (default is TERM) to given processes\n" \
2221      "\nOptions:" \
2222      "\n        -l      List all signal names and numbers" \
2223 /*   "\n        -s SIG  Yet another way of specifying SIG" */ \
2224      "\n        -q      Do not complain if no processes were killed" \
2225
2226 #define killall_example_usage \
2227        "$ killall apache\n"
2228
2229 #define killall5_trivial_usage \
2230        "[-l] [-SIG] [-o PID]..."
2231 #define killall5_full_usage "\n\n" \
2232        "Send a signal (default is TERM) to all processes outside current session\n" \
2233      "\nOptions:" \
2234      "\n        -l      List all signal names and numbers" \
2235      "\n        -o PID  Do not signal this PID" \
2236 /*   "\n        -s SIG  Yet another way of specifying SIG" */ \
2237
2238 #define klogd_trivial_usage \
2239        "[-c N] [-n]"
2240 #define klogd_full_usage "\n\n" \
2241        "Kernel logger\n" \
2242      "\nOptions:" \
2243      "\n        -c N    Only messages with level < N are printed to console" \
2244      "\n        -n      Run in foreground" \
2245
2246 #define length_trivial_usage \
2247        "STRING"
2248 #define length_full_usage "\n\n" \
2249        "Print STRING's length"
2250
2251 #define length_example_usage \
2252        "$ length Hello\n" \
2253        "5\n"
2254
2255 #define less_trivial_usage \
2256        "[-EMNmh~I?] [FILE]..."
2257 #define less_full_usage "\n\n" \
2258        "View a file or list of files. The position within files can be\n" \
2259        "changed, and files can be manipulated in various ways.\n" \
2260      "\nOptions:" \
2261      "\n        -E      Quit once the end of a file is reached" \
2262      "\n        -M,-m   Display a status line containing the line numbers" \
2263      "\n                and percentage through the file" \
2264      "\n        -N      Prefix line numbers to each line" \
2265      "\n        -I      Ignore case in all searches" \
2266      "\n        -~      Suppress ~s displayed past the end of the file" \
2267
2268 #define linux32_trivial_usage NOUSAGE_STR
2269 #define linux32_full_usage ""
2270 #define linux64_trivial_usage NOUSAGE_STR
2271 #define linux64_full_usage ""
2272
2273 #define linuxrc_trivial_usage NOUSAGE_STR
2274 #define linuxrc_full_usage ""
2275
2276 #define setarch_trivial_usage \
2277        "personality program [args...]"
2278 #define setarch_full_usage "\n\n" \
2279        "Personality may be:\n" \
2280        "        linux32         Set 32bit uname emulation\n" \
2281        "        linux64         Set 64bit uname emulation" \
2282
2283 #define ln_trivial_usage \
2284        "[OPTIONS] TARGET... LINK_NAME|DIRECTORY"
2285 #define ln_full_usage "\n\n" \
2286        "Create a link named LINK_NAME or DIRECTORY to the specified TARGET.\n" \
2287        "Use '--' to indicate that all following arguments are non-options.\n" \
2288      "\nOptions:" \
2289      "\n        -s      Make symlinks instead of hardlinks" \
2290      "\n        -f      Remove existing destination files" \
2291      "\n        -n      Don't dereference symlinks - treat like normal file" \
2292      "\n        -b      Make a backup of the target (if exists) before link operation" \
2293      "\n        -S suf  Use suffix instead of ~ when making backup files" \
2294
2295 #define ln_example_usage \
2296        "$ ln -s BusyBox /tmp/ls\n" \
2297        "$ ls -l /tmp/ls\n" \
2298        "lrwxrwxrwx    1 root     root            7 Apr 12 18:39 ls -> BusyBox*\n"
2299
2300 #define load_policy_trivial_usage NOUSAGE_STR
2301 #define load_policy_full_usage ""
2302
2303 #define loadfont_trivial_usage \
2304        "< font"
2305 #define loadfont_full_usage "\n\n" \
2306        "Load a console font from standard input" \
2307 /*   "\n        -C TTY  Affect TTY instead of /dev/tty" */ \
2308
2309 #define loadfont_example_usage \
2310        "$ loadfont < /etc/i18n/fontname\n"
2311
2312 #define loadkmap_trivial_usage \
2313        "< keymap"
2314 #define loadkmap_full_usage "\n\n" \
2315        "Load a binary keyboard translation table from standard input\n" \
2316 /*   "\n        -C TTY  Affect TTY instead of /dev/tty" */ \
2317
2318 #define loadkmap_example_usage \
2319        "$ loadkmap < /etc/i18n/lang-keymap\n"
2320
2321 #define logger_trivial_usage \
2322        "[OPTIONS] [MESSAGE]"
2323 #define logger_full_usage "\n\n" \
2324        "Write MESSAGE to the system log. If MESSAGE is omitted, log stdin.\n" \
2325      "\nOptions:" \
2326      "\n        -s      Log to stderr as well as the system log" \
2327      "\n        -t TAG  Log using the specified tag (defaults to user name)" \
2328      "\n        -p PRIO Priority (numeric or facility.level pair)" \
2329
2330 #define logger_example_usage \
2331        "$ logger \"hello\"\n"
2332
2333 #define login_trivial_usage \
2334        "[-p] [-h HOST] [[-f] USER]"
2335 #define login_full_usage "\n\n" \
2336        "Begin a new session on the system\n" \
2337      "\nOptions:" \
2338      "\n        -f      Do not authenticate (user already authenticated)" \
2339      "\n        -h      Name of the remote host" \
2340      "\n        -p      Preserve environment" \
2341
2342 #define logname_trivial_usage \
2343        ""
2344 #define logname_full_usage "\n\n" \
2345        "Print the name of the current user"
2346 #define logname_example_usage \
2347        "$ logname\n" \
2348        "root\n"
2349
2350 #define logread_trivial_usage \
2351        "[OPTIONS]"
2352 #define logread_full_usage "\n\n" \
2353        "Show messages in syslogd's circular buffer\n" \
2354      "\nOptions:" \
2355      "\n        -f      Output data as log grows" \
2356
2357 #define losetup_trivial_usage \
2358        "[-o OFS] LOOPDEV FILE - associate loop devices\n" \
2359        "        losetup -d LOOPDEV - disassociate\n" \
2360        "        losetup [-f] - show"
2361 #define losetup_full_usage "\n\n" \
2362        "Options:" \
2363      "\n        -o OFS  Start OFS bytes into FILE" \
2364      "\n        -f      Show first free loop device" \
2365
2366 #define losetup_notes_usage \
2367        "No arguments will display all current associations.\n" \
2368        "One argument (losetup /dev/loop1) will display the current association\n" \
2369        "(if any), or disassociate it (with -d). The display shows the offset\n" \
2370        "and filename of the file the loop device is currently bound to.\n\n" \
2371        "Two arguments (losetup /dev/loop1 file.img) create a new association,\n" \
2372        "with an optional offset (-o 12345). Encryption is not yet supported.\n" \
2373        "losetup -f will show the first loop free loop device\n\n"
2374
2375 #define lpd_trivial_usage \
2376        "SPOOLDIR [HELPER [ARGS]]"
2377 #define lpd_full_usage "\n\n" \
2378        "SPOOLDIR must contain (symlinks to) device nodes or directories" \
2379      "\nwith names matching print queue names. In the first case, jobs are" \
2380      "\nsent directly to the device. Otherwise each job is stored in queue" \
2381      "\ndirectory and HELPER program is called. Name of file to print" \
2382      "\nis passed in $DATAFILE variable." \
2383      "\nExample:" \
2384      "\n        tcpsvd -E 0 515 softlimit -m 999999 lpd /var/spool ./print" \
2385
2386 #define lpq_trivial_usage \
2387        "[-P queue[@host[:port]]] [-U USERNAME] [-d JOBID...] [-fs]"
2388 #define lpq_full_usage "\n\n" \
2389        "Options:" \
2390      "\n        -P      lp service to connect to (else uses $PRINTER)" \
2391      "\n        -d      Delete jobs" \
2392      "\n        -f      Force any waiting job to be printed" \
2393      "\n        -s      Short display" \
2394
2395 #define lpr_trivial_usage \
2396        "-P queue[@host[:port]] -U USERNAME -J TITLE -Vmh [FILE]..."
2397 /* -C CLASS exists too, not shown.
2398  * CLASS is supposed to be printed on banner page, if one is requested */
2399 #define lpr_full_usage "\n\n" \
2400        "Options:" \
2401      "\n        -P      lp service to connect to (else uses $PRINTER)"\
2402      "\n        -m      Send mail on completion" \
2403      "\n        -h      Print banner page too" \
2404      "\n        -V      Verbose" \
2405
2406 #define ls_trivial_usage \
2407        "[-1Aa" IF_FEATURE_LS_TIMESTAMPS("c") "Cd" \
2408         IF_FEATURE_LS_TIMESTAMPS("e") IF_FEATURE_LS_FILETYPES("F") "iln" \
2409         IF_FEATURE_LS_FILETYPES("p") IF_FEATURE_LS_FOLLOWLINKS("L") \
2410         IF_FEATURE_LS_RECURSIVE("R") IF_FEATURE_LS_SORTFILES("rS") "s" \
2411         IF_FEATURE_AUTOWIDTH("T") IF_FEATURE_LS_TIMESTAMPS("tu") \
2412         IF_FEATURE_LS_SORTFILES("v") IF_FEATURE_AUTOWIDTH("w") "x" \
2413         IF_FEATURE_LS_SORTFILES("X") IF_FEATURE_HUMAN_READABLE("h") "k" \
2414         IF_SELINUX("K") "] [FILE]..."
2415 #define ls_full_usage "\n\n" \
2416        "List directory contents\n" \
2417      "\nOptions:" \
2418      "\n        -1      List in a single column" \
2419      "\n        -A      Don't list . and .." \
2420      "\n        -a      Don't hide entries starting with ." \
2421      "\n        -C      List by columns" \
2422         IF_FEATURE_LS_TIMESTAMPS( \
2423      "\n        -c      With -l: sort by ctime") \
2424         IF_FEATURE_LS_COLOR( \
2425      "\n        --color[={always,never,auto}]   Control coloring") \
2426      "\n        -d      List directory entries instead of contents" \
2427         IF_FEATURE_LS_TIMESTAMPS( \
2428      "\n        -e      List full date and time") \
2429         IF_FEATURE_LS_FILETYPES( \
2430      "\n        -F      Append indicator (one of */=@|) to entries") \
2431      "\n        -i      List inode numbers" \
2432      "\n        -l      Long listing format" \
2433      "\n        -n      List numeric UIDs and GIDs instead of names" \
2434         IF_FEATURE_LS_FILETYPES( \
2435      "\n        -p      Append indicator (one of /=@|) to entries") \
2436         IF_FEATURE_LS_FOLLOWLINKS( \
2437      "\n        -L      List entries pointed to by symlinks") \
2438         IF_FEATURE_LS_RECURSIVE( \
2439      "\n        -R      List subdirectories recursively") \
2440         IF_FEATURE_LS_SORTFILES( \
2441      "\n        -r      Sort in reverse order") \
2442         IF_FEATURE_LS_SORTFILES( \
2443      "\n        -S      Sort by file size") \
2444      "\n        -s      List the size of each file, in blocks" \
2445         IF_FEATURE_AUTOWIDTH( \
2446      "\n        -T NUM  Assume tabstop every NUM columns") \
2447         IF_FEATURE_LS_TIMESTAMPS( \
2448      "\n        -t      With -l: sort by modification time") \
2449         IF_FEATURE_LS_TIMESTAMPS( \
2450      "\n        -u      With -l: sort by access time") \
2451         IF_FEATURE_LS_SORTFILES( \
2452      "\n        -v      Sort by version") \
2453         IF_FEATURE_AUTOWIDTH( \
2454      "\n        -w NUM  Assume the terminal is NUM columns wide") \
2455      "\n        -x      List by lines" \
2456         IF_FEATURE_LS_SORTFILES( \
2457      "\n        -X      Sort by extension") \
2458         IF_FEATURE_HUMAN_READABLE( \
2459      "\n        -h      List sizes in human readable format (1K 243M 2G)") \
2460         IF_SELINUX( \
2461      "\n        -k      List security context") \
2462         IF_SELINUX( \
2463      "\n        -K      List security context in long format") \
2464         IF_SELINUX( \
2465      "\n        -Z      List security context and permission") \
2466
2467 #define lsattr_trivial_usage \
2468        "[-Radlv] [FILE]..."
2469 #define lsattr_full_usage "\n\n" \
2470        "List file attributes on an ext2 fs\n" \
2471      "\nOptions:" \
2472      "\n        -R      Recursively list subdirectories" \
2473      "\n        -a      Do not hide entries starting with ." \
2474      "\n        -d      List directory entries instead of contents" \
2475      "\n        -l      List long flag names" \
2476      "\n        -v      List the file's version/generation number" \
2477
2478 #define lsmod_trivial_usage \
2479        ""
2480 #define lsmod_full_usage "\n\n" \
2481        "List the currently loaded kernel modules"
2482
2483 #if ENABLE_FEATURE_MAKEDEVS_LEAF
2484 #define makedevs_trivial_usage \
2485        "NAME TYPE MAJOR MINOR FIRST LAST [s]"
2486 #define makedevs_full_usage "\n\n" \
2487        "Create a range of block or character special files" \
2488      "\n" \
2489      "\nTYPE is:" \
2490      "\n        b       Block device" \
2491      "\n        c       Character device" \
2492      "\n        f       FIFO, MAJOR and MINOR are ignored" \
2493      "\n" \
2494      "\nFIRST..LAST specify numbers appended to NAME." \
2495      "\nIf 's' is the last argument, the base device is created as well." \
2496      "\n" \
2497      "\nExamples:" \
2498      "\n        makedevs /dev/ttyS c 4 66 2 63   ->  ttyS2-ttyS63" \
2499      "\n        makedevs /dev/hda b 3 0 0 8 s    ->  hda,hda1-hda8"
2500 #define makedevs_example_usage \
2501        "# makedevs /dev/ttyS c 4 66 2 63\n" \
2502        "[creates ttyS2-ttyS63]\n" \
2503        "# makedevs /dev/hda b 3 0 0 8 s\n" \
2504        "[creates hda,hda1-hda8]\n"
2505 #endif
2506
2507 #if ENABLE_FEATURE_MAKEDEVS_TABLE
2508 #define makedevs_trivial_usage \
2509        "[-d device_table] rootdir"
2510 #define makedevs_full_usage "\n\n" \
2511        "Create a range of special files as specified in a device table.\n" \
2512        "Device table entries take the form of:\n" \
2513        "<type> <mode> <uid> <gid> <major> <minor> <start> <inc> <count>\n" \
2514        "Where name is the file name, type can be one of:\n" \
2515        "        f       Regular file\n" \
2516        "        d       Directory\n" \
2517        "        c       Character device\n" \
2518        "        b       Block device\n" \
2519        "        p       Fifo (named pipe)\n" \
2520        "uid is the user id for the target file, gid is the group id for the\n" \
2521        "target file. The rest of the entries (major, minor, etc) apply to\n" \
2522        "to device special files. A '-' may be used for blank entries."
2523 #define makedevs_example_usage \
2524        "For example:\n" \
2525        "<name>    <type> <mode><uid><gid><major><minor><start><inc><count>\n" \
2526        "/dev         d   755    0    0    -      -      -      -    -\n" \
2527        "/dev/console c   666    0    0    5      1      -      -    -\n" \
2528        "/dev/null    c   666    0    0    1      3      0      0    -\n" \
2529        "/dev/zero    c   666    0    0    1      5      0      0    -\n" \
2530        "/dev/hda     b   640    0    0    3      0      0      0    -\n" \
2531        "/dev/hda     b   640    0    0    3      1      1      1    15\n\n" \
2532        "Will Produce:\n" \
2533        "/dev\n" \
2534        "/dev/console\n" \
2535        "/dev/null\n" \
2536        "/dev/zero\n" \
2537        "/dev/hda\n" \
2538        "/dev/hda[0-15]\n"
2539 #endif
2540
2541 #define makemime_trivial_usage \
2542        "[OPTIONS] [FILE]..."
2543 #define makemime_full_usage "\n\n" \
2544        "Create multipart MIME-encoded message from FILEs.\n" \
2545 /*     "Transfer encoding is base64, disposition is inline (not attachment)\n" */ \
2546      "\nOptions:" \
2547      "\n        -o FILE Output. Default: stdout" \
2548      "\n        -a HDR  Add header. Examples:" \
2549      "\n                \"From: user@host.org\", \"Date: `date -R`\"" \
2550      "\n        -c CT   Content type. Default: text/plain" \
2551      "\n        -C CS   Charset. Default: " CONFIG_FEATURE_MIME_CHARSET \
2552 /*   "\n        -e ENC  Transfer encoding. Ignored. base64 is assumed" */ \
2553      "\n" \
2554      "\nOther options are silently ignored" \
2555
2556 #define man_trivial_usage \
2557        "[OPTIONS] [MANPAGE]..."
2558 #define man_full_usage "\n\n" \
2559        "Format and display manual page\n" \
2560      "\nOptions:" \
2561      "\n        -a      Display all pages" \
2562      "\n        -w      Show page locations" \
2563
2564 #define matchpathcon_trivial_usage \
2565        "[-n] [-N] [-f file_contexts_file] [-p prefix] [-V]"
2566 #define matchpathcon_full_usage "\n\n" \
2567        "        -n      Do not display path" \
2568      "\n        -N      Do not use translations" \
2569      "\n        -f      Use alternate file_context file" \
2570      "\n        -p      Use prefix to speed translations" \
2571      "\n        -V      Verify file context on disk matches defaults" \
2572
2573 #define md5sum_trivial_usage \
2574        "[OPTIONS] [FILE]..." \
2575         IF_FEATURE_MD5_SHA1_SUM_CHECK("\n   or: md5sum [OPTIONS] -c [FILE]")
2576 #define md5sum_full_usage "\n\n" \
2577        "Print" IF_FEATURE_MD5_SHA1_SUM_CHECK(" or check") " MD5 checksums" \
2578         IF_FEATURE_MD5_SHA1_SUM_CHECK( "\n" \
2579      "\nOptions:" \
2580      "\n        -c      Check sums against given list" \
2581      "\n        -s      Don't output anything, status code shows success" \
2582      "\n        -w      Warn about improperly formatted checksum lines" \
2583         )
2584
2585 #define md5sum_example_usage \
2586        "$ md5sum < busybox\n" \
2587        "6fd11e98b98a58f64ff3398d7b324003\n" \
2588        "$ md5sum busybox\n" \
2589        "6fd11e98b98a58f64ff3398d7b324003  busybox\n" \
2590        "$ md5sum -c -\n" \
2591        "6fd11e98b98a58f64ff3398d7b324003  busybox\n" \
2592        "busybox: OK\n" \
2593        "^D\n"
2594
2595 #define sha1sum_trivial_usage \
2596        "[OPTIONS] [FILE]..." \
2597         IF_FEATURE_MD5_SHA1_SUM_CHECK("\n   or: sha1sum [OPTIONS] -c [FILE]")
2598 #define sha1sum_full_usage "\n\n" \
2599        "Print" IF_FEATURE_MD5_SHA1_SUM_CHECK(" or check") " SHA1 checksums." \
2600         IF_FEATURE_MD5_SHA1_SUM_CHECK( "\n" \
2601      "\nOptions:" \
2602      "\n        -c      Check sums against given list" \
2603      "\n        -s      Don't output anything, status code shows success" \
2604      "\n        -w      Warn about improperly formatted checksum lines" \
2605         )
2606
2607 #define sha256sum_trivial_usage \
2608        "[OPTIONS] [FILE]..." \
2609         IF_FEATURE_MD5_SHA1_SUM_CHECK("\n   or: sha256sum [OPTIONS] -c [FILE]")
2610 #define sha256sum_full_usage "\n\n" \
2611        "Print" IF_FEATURE_MD5_SHA1_SUM_CHECK(" or check") " SHA1 checksums." \
2612         IF_FEATURE_MD5_SHA1_SUM_CHECK( "\n" \
2613      "\nOptions:" \
2614      "\n        -c      Check sums against given list" \
2615      "\n        -s      Don't output anything, status code shows success" \
2616      "\n        -w      Warn about improperly formatted checksum lines" \
2617         )
2618
2619 #define sha512sum_trivial_usage \
2620        "[OPTIONS] [FILE]..." \
2621         IF_FEATURE_MD5_SHA1_SUM_CHECK("\n   or: sha512sum [OPTIONS] -c [FILE]")
2622 #define sha512sum_full_usage "\n\n" \
2623        "Print" IF_FEATURE_MD5_SHA1_SUM_CHECK(" or check") " SHA1 checksums." \
2624         IF_FEATURE_MD5_SHA1_SUM_CHECK( "\n" \
2625      "\nOptions:" \
2626      "\n        -c      Check sums against given list" \
2627      "\n        -s      Don't output anything, status code shows success" \
2628      "\n        -w      Warn about improperly formatted checksum lines" \
2629         )
2630
2631 #define mdev_trivial_usage \
2632        "[-s]"
2633 #define mdev_full_usage "\n\n" \
2634        "        -s      Scan /sys and populate /dev during system boot\n" \
2635        "\n" \
2636        "It can be run by kernel as a hotplug helper. To activate it:\n" \
2637        " echo /bin/mdev >/proc/sys/kernel/hotplug\n" \
2638         IF_FEATURE_MDEV_CONF( \
2639        "It uses /etc/mdev.conf with lines\n" \
2640        "[-]DEVNAME UID:GID PERM" \
2641                         IF_FEATURE_MDEV_RENAME(" [>|=PATH]") \
2642                         IF_FEATURE_MDEV_EXEC(" [@|$|*PROG]") \
2643         ) \
2644
2645 #define mdev_notes_usage "" \
2646         IF_FEATURE_MDEV_CONFIG( \
2647        "The mdev config file contains lines that look like:\n" \
2648        "  hd[a-z][0-9]* 0:3 660\n\n" \
2649        "That's device name (with regex match), uid:gid, and permissions.\n\n" \
2650         IF_FEATURE_MDEV_EXEC( \
2651        "Optionally, that can be followed (on the same line) by a special character\n" \
2652        "and a command line to run after creating/before deleting the corresponding\n" \
2653        "device(s). The environment variable $MDEV indicates the active device node\n" \
2654        "(which is useful if it's a regex match). For example:\n\n" \
2655        "  hdc root:cdrom 660  *ln -s $MDEV cdrom\n\n" \
2656        "The special characters are @ (run after creating), $ (run before deleting),\n" \
2657        "and * (run both after creating and before deleting). The commands run in\n" \
2658        "the /dev directory, and use system() which calls /bin/sh.\n\n" \
2659         ) \
2660        "Config file parsing stops on the first matching line. If no config\n" \
2661        "entry is matched, devices are created with default 0:0 660. (Make\n" \
2662        "the last line match .* to override this.)\n\n" \
2663         )
2664
2665 #define mesg_trivial_usage \
2666        "[y|n]"
2667 #define mesg_full_usage "\n\n" \
2668        "Control write access to your terminal\n" \
2669        "        y       Allow write access to your terminal\n" \
2670        "        n       Disallow write access to your terminal"
2671
2672 #define microcom_trivial_usage \
2673        "[-d DELAY] [-t TIMEOUT] [-s SPEED] [-X] TTY"
2674 #define microcom_full_usage "\n\n" \
2675        "Copy bytes for stdin to TTY and from TTY to stdout\n" \
2676      "\nOptions:" \
2677      "\n        -d      Wait up to DELAY ms for TTY output before sending every" \
2678      "\n                next byte to it" \
2679      "\n        -t      Exit if both stdin and TTY are silent for TIMEOUT ms" \
2680      "\n        -s      Set serial line to SPEED" \
2681      "\n        -X      Disable special meaning of NUL and Ctrl-X from stdin" \
2682
2683 #define mkdir_trivial_usage \
2684        "[OPTIONS] DIRECTORY..."
2685 #define mkdir_full_usage "\n\n" \
2686        "Create DIRECTORY\n" \
2687      "\nOptions:" \
2688      "\n        -m      Set permission mode (as in chmod), not rwxrwxrwx - umask" \
2689      "\n        -p      No error if existing, make parent directories as needed" \
2690         IF_SELINUX( \
2691      "\n        -Z      Set security context" \
2692         )
2693
2694 #define mkdir_example_usage \
2695        "$ mkdir /tmp/foo\n" \
2696        "$ mkdir /tmp/foo\n" \
2697        "/tmp/foo: File exists\n" \
2698        "$ mkdir /tmp/foo/bar/baz\n" \
2699        "/tmp/foo/bar/baz: No such file or directory\n" \
2700        "$ mkdir -p /tmp/foo/bar/baz\n"
2701
2702 #define mke2fs_trivial_usage \
2703        "[-c|-l filename] [-b block-size] [-f fragment-size] [-g blocks-per-group] " \
2704        "[-i bytes-per-inode] [-j] [-J journal-options] [-N number-of-inodes] [-n] " \
2705        "[-m reserved-blocks-percentage] [-o creator-os] [-O feature[,...]] [-q] " \
2706        "[r fs-revision-level] [-E extended-options] [-v] [-F] [-L volume-label] " \
2707        "[-M last-mounted-directory] [-S] [-T filesystem-type] " \
2708        "device [blocks-count]"
2709 #define mke2fs_full_usage "\n\n" \
2710        "        -b size         Block size in bytes" \
2711      "\n        -c              Check for bad blocks before creating" \
2712      "\n        -E opts         Set extended options" \
2713      "\n        -f size         Fragment size in bytes" \
2714      "\n        -F              Force (ignore sanity checks)" \
2715      "\n        -g num          Number of blocks in a block group" \
2716      "\n        -i ratio        The bytes/inode ratio" \
2717      "\n        -j              Create a journal (ext3)" \
2718      "\n        -J opts         Set journal options (size/device)" \
2719      "\n        -l file         Read bad blocks list from file" \
2720      "\n        -L lbl          Set the volume label" \
2721      "\n        -m percent      Percent of fs blocks to reserve for admin" \
2722      "\n        -M dir          Set last mounted directory" \
2723      "\n        -n              Do not actually create anything" \
2724      "\n        -N num          Number of inodes to create" \
2725      "\n        -o os           Set the 'creator os' field" \
2726      "\n        -O features     Dir_index/filetype/has_journal/journal_dev/sparse_super" \
2727      "\n        -q              Quiet" \
2728      "\n        -r rev          Set filesystem revision" \
2729      "\n        -S              Write superblock and group descriptors only" \
2730      "\n        -T fs-type      Set usage type (news/largefile/largefile4)" \
2731      "\n        -v              Verbose" \
2732
2733 #define mkfifo_trivial_usage \
2734        "[OPTIONS] name"
2735 #define mkfifo_full_usage "\n\n" \
2736        "Create named pipe (identical to 'mknod name p')\n" \
2737      "\nOptions:" \
2738      "\n        -m MODE Mode (default a=rw)" \
2739         IF_SELINUX( \
2740      "\n        -Z      Set security context" \
2741         )
2742
2743 #define mkfs_minix_trivial_usage \
2744        "[-c | -l filename] [-nXX] [-iXX] /dev/name [blocks]"
2745 #define mkfs_minix_full_usage "\n\n" \
2746        "Make a MINIX filesystem\n" \
2747      "\nOptions:" \
2748      "\n        -c              Check device for bad blocks" \
2749      "\n        -n [14|30]      Maximum length of filenames" \
2750      "\n        -i INODES       Number of inodes for the filesystem" \
2751      "\n        -l FILENAME     Read bad blocks list from FILENAME" \
2752      "\n        -v              Make version 2 filesystem" \
2753
2754 #define mkfs_vfat_trivial_usage \
2755        "[-v] [-n LABEL] FILE_OR_DEVICE [SIZE_IN_KB]"
2756 /* Accepted but ignored:
2757        "[-c] [-C] [-I] [-l bad-block-file] [-b backup-boot-sector] "
2758        "[-m boot-msg-file] [-i volume-id] "
2759        "[-s sectors-per-cluster] [-S logical-sector-size] [-f number-of-FATs] "
2760        "[-h hidden-sectors] [-F fat-size] [-r root-dir-entries] [-R reserved-sectors] "
2761 */
2762 #define mkfs_vfat_full_usage "\n\n" \
2763        "Make a FAT32 filesystem\n" \
2764      "\nOptions:" \
2765 /*   "\n        -c      Check device for bad blocks" */ \
2766      "\n        -v      Verbose" \
2767 /*   "\n        -I      Allow to use entire disk device (e.g. /dev/hda)" */ \
2768      "\n        -n LBL  Volume label" \
2769
2770 #define mknod_trivial_usage \
2771        "[OPTIONS] NAME TYPE MAJOR MINOR"
2772 #define mknod_full_usage "\n\n" \
2773        "Create a special file (block, character, or pipe)\n" \
2774      "\nOptions:" \
2775      "\n        -m      Create the special file using the specified mode (default a=rw)" \
2776      "\nTYPEs include:" \
2777      "\n        b:      Make a block device" \
2778      "\n        c or u: Make a character device" \
2779      "\n        p:      Make a named pipe (MAJOR and MINOR are ignored)" \
2780         IF_SELINUX( \
2781      "\n        -Z      Set security context" \
2782         )
2783
2784 #define mknod_example_usage \
2785        "$ mknod /dev/fd0 b 2 0\n" \
2786        "$ mknod -m 644 /tmp/pipe p\n"
2787
2788 #define mkswap_trivial_usage \
2789        "DEVICE"
2790 #define mkswap_full_usage "\n\n" \
2791        "Prepare block device to be used as swap partition"
2792 #if 0
2793        "[-c] [-v0|-v1] DEVICE [BLOCKS]"
2794      "\nOptions:"
2795      "\n        -c      Check for readability"
2796      "\n        -v0     Make swap version 0 (max 128M)"
2797      "\n        -v1     Make swap version 1 (default for kernels > 2.1.117)"
2798      "\n        BLOCKS  Number of blocks to use (default is entire partition)"
2799 #endif
2800
2801 #define mktemp_trivial_usage \
2802        "[-dt] [-p DIR] [TEMPLATE]"
2803 #define mktemp_full_usage "\n\n" \
2804        "Create a temporary file with name based on TEMPLATE and print its name.\n" \
2805        "TEMPLATE must end with XXXXXX (e.g. [/dir/]nameXXXXXX).\n" \
2806      "\nOptions:" \
2807      "\n        -d      Make a directory instead of a file" \
2808 /*   "\n        -q      Fail silently if an error occurs" - we ignore it */ \
2809      "\n        -t      Generate a path rooted in temporary directory" \
2810      "\n        -p DIR  Use DIR as a temporary directory (implies -t)" \
2811      "\n" \
2812      "\nFor -t or -p, directory is chosen as follows:" \
2813      "\n$TMPDIR if set, else -p DIR, else /tmp" \
2814
2815 #define mktemp_example_usage \
2816        "$ mktemp /tmp/temp.XXXXXX\n" \
2817        "/tmp/temp.mWiLjM\n" \
2818        "$ ls -la /tmp/temp.mWiLjM\n" \
2819        "-rw-------    1 andersen andersen        0 Apr 25 17:10 /tmp/temp.mWiLjM\n"
2820
2821 #define modprobe_trivial_usage \
2822        "[-knqrsv] MODULE [symbol=value...]"
2823 #define modprobe_full_usage "\n\n" \
2824        "Options:" \
2825         IF_FEATURE_2_4_MODULES( \
2826      "\n        -k      Make module autoclean-able" \
2827         ) \
2828      "\n        -n      Dry run" \
2829      "\n        -q      Quiet" \
2830      "\n        -r      Remove module (stacks) or do autoclean" \
2831      "\n        -s      Report via syslog instead of stderr" \
2832      "\n        -v      Verbose" \
2833         IF_FEATURE_MODPROBE_BLACKLIST( \
2834      "\n        -b      Apply blacklist to module names too" \
2835         )
2836
2837 #define modprobe_notes_usage \
2838 "modprobe can (un)load a stack of modules, passing each module options (when\n" \
2839 "loading). modprobe uses a configuration file to determine what option(s) to\n" \
2840 "pass each module it loads.\n" \
2841 "\n" \
2842 "The configuration file is searched (in this order):\n" \
2843 "\n" \
2844 "    /etc/modprobe.conf (2.6 only)\n" \
2845 "    /etc/modules.conf\n" \
2846 "    /etc/conf.modules (deprecated)\n" \
2847 "\n" \
2848 "They all have the same syntax (see below). If none is present, it is\n" \
2849 "_not_ an error; each loaded module is then expected to load without\n" \
2850 "options. Once a file is found, the others are tested for.\n" \
2851 "\n" \
2852 "/etc/modules.conf entry format:\n" \
2853 "\n" \
2854 "  alias <alias_name> <mod_name>\n" \
2855 "    Makes it possible to modprobe alias_name, when there is no such module.\n" \
2856 "    It makes sense if your mod_name is long, or you want a more representative\n" \
2857 "    name for that module (eg. 'scsi' in place of 'aha7xxx').\n" \
2858 "    This makes it also possible to use a different set of options (below) for\n" \
2859 "    the module and the alias.\n" \
2860 "    A module can be aliased more than once.\n" \
2861 "\n" \
2862 "  options <mod_name|alias_name> <symbol=value...>\n" \
2863 "    When loading module mod_name (or the module aliased by alias_name), pass\n" \
2864 "    the \"symbol=value\" pairs as option to that module.\n" \
2865 "\n" \
2866 "Sample /etc/modules.conf file:\n" \
2867 "\n" \
2868 "  options tulip irq=3\n" \
2869 "  alias tulip tulip2\n" \
2870 "  options tulip2 irq=4 io=0x308\n" \
2871 "\n" \
2872 "Other functionality offered by 'classic' modprobe is not available in\n" \
2873 "this implementation.\n" \
2874 "\n" \
2875 "If module options are present both in the config file, and on the command line,\n" \
2876 "then the options from the command line will be passed to the module _after_\n" \
2877 "the options from the config file. That way, you can have defaults in the config\n" \
2878 "file, and override them for a specific usage from the command line.\n"
2879 #define modprobe_example_usage \
2880        "(with the above /etc/modules.conf):\n\n" \
2881        "$ modprobe tulip\n" \
2882        "   will load the module 'tulip' with default option 'irq=3'\n\n" \
2883        "$ modprobe tulip irq=5\n" \
2884        "   will load the module 'tulip' with option 'irq=5', thus overriding the default\n\n" \
2885        "$ modprobe tulip2\n" \
2886        "   will load the module 'tulip' with default options 'irq=4 io=0x308',\n" \
2887        "   which are the default for alias 'tulip2'\n\n" \
2888        "$ modprobe tulip2 irq=8\n" \
2889        "   will load the module 'tulip' with default options 'irq=4 io=0x308 irq=8',\n" \
2890        "   which are the default for alias 'tulip2' overridden by the option 'irq=8'\n\n" \
2891        "   from the command line\n\n" \
2892        "$ modprobe tulip2 irq=2 io=0x210\n" \
2893        "   will load the module 'tulip' with default options 'irq=4 io=0x308 irq=4 io=0x210',\n" \
2894        "   which are the default for alias 'tulip2' overridden by the options 'irq=2 io=0x210'\n\n" \
2895        "   from the command line\n"
2896
2897 #define more_trivial_usage \
2898        "[FILE]..."
2899 #define more_full_usage "\n\n" \
2900        "View FILE or standard input one screenful at a time"
2901
2902 #define more_example_usage \
2903        "$ dmesg | more\n"
2904
2905 #define mount_trivial_usage \
2906        "[flags] DEVICE NODE [-o OPT,OPT]"
2907 #define mount_full_usage "\n\n" \
2908        "Mount a filesystem. Filesystem autodetection requires /proc be mounted.\n" \
2909      "\nOptions:" \
2910      "\n        -a              Mount all filesystems in fstab" \
2911         IF_FEATURE_MOUNT_FAKE( \
2912         IF_FEATURE_MTAB_SUPPORT( \
2913      "\n        -f              Update /etc/mtab, but don't mount" \
2914         ) \
2915         IF_NOT_FEATURE_MTAB_SUPPORT( \
2916      "\n        -f              Dry run" \
2917         ) \
2918         ) \
2919         IF_FEATURE_MOUNT_HELPERS( \
2920      "\n        -i              Don't run mount helper" \
2921         ) \
2922         IF_FEATURE_MTAB_SUPPORT( \
2923      "\n        -n              Don't update /etc/mtab" \
2924         ) \
2925      "\n        -r              Read-only mount" \
2926      "\n        -w              Read-write mount (default)" \
2927      "\n        -t FSTYPE       Filesystem type" \
2928      "\n        -O OPT          Mount only filesystems with option OPT (-a only)" \
2929      "\n-o OPT:" \
2930         IF_FEATURE_MOUNT_LOOP( \
2931      "\n        loop            Ignored (loop devices are autodetected)" \
2932         ) \
2933         IF_FEATURE_MOUNT_FLAGS( \
2934      "\n        [a]sync         Writes are [a]synchronous" \
2935      "\n        [no]atime       Disable/enable updates to inode access times" \
2936      "\n        [no]diratime    Disable/enable atime updates to directories" \
2937      "\n        [no]relatime    Disable/enable atime updates relative to modification time" \
2938      "\n        [no]dev         (Dis)allow use of special device files" \
2939      "\n        [no]exec        (Dis)allow use of executable files" \
2940      "\n        [no]suid        (Dis)allow set-user-id-root programs" \
2941      "\n        [r]shared       Convert [recursively] to a shared subtree" \
2942      "\n        [r]slave        Convert [recursively] to a slave subtree" \
2943      "\n        [r]private      Convert [recursively] to a private subtree" \
2944      "\n        [un]bindable    Make mount point [un]able to be bind mounted" \
2945      "\n        bind            Bind a directory to an additional location" \
2946      "\n        move            Relocate an existing mount point" \
2947         ) \
2948      "\n        remount         Remount a mounted filesystem, changing its flags" \
2949      "\n        ro/rw           Read-only/read-write mount" \
2950      "\n" \
2951      "\nThere are EVEN MORE flags that are specific to each filesystem" \
2952      "\nYou'll have to see the written documentation for those filesystems" \
2953
2954 #define mount_example_usage \
2955        "$ mount\n" \
2956        "/dev/hda3 on / type minix (rw)\n" \
2957        "proc on /proc type proc (rw)\n" \
2958        "devpts on /dev/pts type devpts (rw)\n" \
2959        "$ mount /dev/fd0 /mnt -t msdos -o ro\n" \
2960        "$ mount /tmp/diskimage /opt -t ext2 -o loop\n" \
2961        "$ mount cd_image.iso mydir\n"
2962 #define mount_notes_usage \
2963        "Returns 0 for success, number of failed mounts for -a, or errno for one mount."
2964
2965 #define mountpoint_trivial_usage \
2966        "[-q] <[-dn] DIR | -x DEVICE>"
2967 #define mountpoint_full_usage "\n\n" \
2968        "Check if the directory is a mountpoint\n" \
2969      "\nOptions:" \
2970      "\n        -q      Quiet" \
2971      "\n        -d      Print major/minor device number of the filesystem" \
2972      "\n        -n      Print device name of the filesystem" \
2973      "\n        -x      Print major/minor device number of the blockdevice" \
2974
2975 #define mountpoint_example_usage \
2976        "$ mountpoint /proc\n" \
2977        "/proc is not a mountpoint\n" \
2978        "$ mountpoint /sys\n" \
2979        "/sys is a mountpoint\n"
2980
2981 #define mt_trivial_usage \
2982        "[-f device] opcode value"
2983 #define mt_full_usage "\n\n" \
2984        "Control magnetic tape drive operation\n" \
2985        "\n" \
2986        "Available Opcodes:\n" \
2987        "\n" \
2988        "bsf bsfm bsr bss datacompression drvbuffer eof eom erase\n" \
2989        "fsf fsfm fsr fss load lock mkpart nop offline ras1 ras2\n" \
2990        "ras3 reset retension rewind rewoffline seek setblk setdensity\n" \
2991        "setpart tell unload unlock weof wset" \
2992
2993 #define mv_trivial_usage \
2994        "[OPTIONS] SOURCE DEST\n" \
2995        "or: mv [OPTIONS] SOURCE... DIRECTORY"
2996 #define mv_full_usage "\n\n" \
2997        "Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY\n" \
2998      "\nOptions:" \
2999      "\n        -f      Don't prompt before overwriting" \
3000      "\n        -i      Interactive, prompt before overwrite" \
3001
3002 #define mv_example_usage \
3003        "$ mv /tmp/foo /bin/bar\n"
3004
3005 #define nameif_trivial_usage \
3006        "[-s] [-c FILE] [{IFNAME MACADDR}]"
3007 #define nameif_full_usage "\n\n" \
3008        "Rename network interface while it in the down state\n" \
3009      "\nOptions:" \
3010      "\n        -c FILE         Use configuration file (default is /etc/mactab)" \
3011      "\n        -s              Use syslog (LOCAL0 facility)" \
3012      "\n        IFNAME MACADDR  new_interface_name interface_mac_address" \
3013
3014 #define nameif_example_usage \
3015        "$ nameif -s dmz0 00:A0:C9:8C:F6:3F\n" \
3016        " or\n" \
3017        "$ nameif -c /etc/my_mactab_file\n" \
3018
3019 #if !ENABLE_DESKTOP
3020
3021 #if ENABLE_NC_SERVER || ENABLE_NC_EXTRA
3022 #define NC_OPTIONS_STR "\n\nOptions:"
3023 #else
3024 #define NC_OPTIONS_STR
3025 #endif
3026
3027 #define nc_trivial_usage \
3028         IF_NC_EXTRA("[-iN] [-wN] ")IF_NC_SERVER("[-l] [-p PORT] ") \
3029        "["IF_NC_EXTRA("-f FILENAME|")"IPADDR PORT]"IF_NC_EXTRA(" [-e PROG]")
3030 #define nc_full_usage "\n\n" \
3031        "Open a pipe to IP:port" IF_NC_EXTRA(" or file") \
3032         NC_OPTIONS_STR \
3033         IF_NC_EXTRA( \
3034      "\n        -e PROG Run PROG after connect" \
3035      "\n        -i SEC  Delay interval for lines sent" \
3036      "\n        -w SEC  Timeout for connect" \
3037      "\n        -f FILE Use file (ala /dev/ttyS0) instead of network" \
3038         ) \
3039         IF_NC_SERVER( \
3040      "\n        -l      Listen mode, for inbound connects" \
3041         IF_NC_EXTRA( \
3042      "\n                (use -l twice with -e for persistent server)") \
3043      "\n        -p PORT Local port" \
3044         )
3045
3046 #define nc_notes_usage "" \
3047         IF_NC_EXTRA( \
3048        "To use netcat as a terminal emulator on a serial port:\n\n" \
3049        "$ stty 115200 -F /dev/ttyS0\n" \
3050        "$ stty raw -echo -ctlecho && nc -f /dev/ttyS0\n" \
3051         )
3052
3053 #define nc_example_usage \
3054        "$ nc foobar.somedomain.com 25\n" \
3055        "220 foobar ESMTP Exim 3.12 #1 Sat, 15 Apr 2000 00:03:02 -0600\n" \
3056        "help\n" \
3057        "214-Commands supported:\n" \
3058        "214-    HELO EHLO MAIL RCPT DATA AUTH\n" \
3059        "214     NOOP QUIT RSET HELP\n" \
3060        "quit\n" \
3061        "221 foobar closing connection\n"
3062
3063 #else /* DESKTOP nc - much more compatible with nc 1.10 */
3064
3065 #define nc_trivial_usage \
3066        "[OPTIONS] HOST PORT  - connect" \
3067         IF_NC_SERVER("\n" \
3068        "nc [OPTIONS] -l -p PORT [HOST] [PORT]  - listen")
3069 #define nc_full_usage "\n\n" \
3070        "Options:" \
3071      "\n        -e PROG         Run PROG after connect (must be last)" \
3072         IF_NC_SERVER( \
3073      "\n        -l              Listen mode, for inbound connects" \
3074         ) \
3075      "\n        -n              Don't do DNS resolution" \
3076      "\n        -s ADDR         Local address" \
3077      "\n        -p PORT         Local port" \
3078      "\n        -u              UDP mode" \
3079      "\n        -v              Verbose" \
3080      "\n        -w SEC          Timeout for connects and final net reads" \
3081         IF_NC_EXTRA( \
3082      "\n        -i SEC          Delay interval for lines sent" /* ", ports scanned" */ \
3083      "\n        -o FILE         Hex dump traffic" \
3084      "\n        -z              Zero-I/O mode (scanning)" \
3085         ) \
3086 /*   "\n        -r              Randomize local and remote ports" */
3087 /*   "\n        -g gateway      Source-routing hop point[s], up to 8" */
3088 /*   "\n        -G num          Source-routing pointer: 4, 8, 12, ..." */
3089 /*   "\nport numbers can be individual or ranges: lo-hi [inclusive]" */
3090
3091 /* -e PROG can take ARGS too: "nc ... -e ls -l", but we don't document it
3092  * in help text: nc 1.10 does not allow that. We don't want to entice
3093  * users to use this incompatibility */
3094
3095 #endif
3096
3097 #define netstat_trivial_usage \
3098        "[-laentuwxr"IF_FEATURE_NETSTAT_WIDE("W")IF_FEATURE_NETSTAT_PRG("p")"]"
3099 #define netstat_full_usage "\n\n" \
3100        "Display networking information\n" \
3101      "\nOptions:" \
3102      "\n        -l      Display listening server sockets" \
3103      "\n        -a      Display all sockets (default: connected)" \
3104      "\n        -e      Display other/more information" \
3105      "\n        -n      Don't resolve names" \
3106      "\n        -t      Tcp sockets" \
3107      "\n        -u      Udp sockets" \
3108      "\n        -w      Raw sockets" \
3109      "\n        -x      Unix sockets" \
3110      "\n        -r      Display routing table" \
3111         IF_FEATURE_NETSTAT_WIDE( \
3112      "\n        -W      Display with no column truncation" \
3113         ) \
3114         IF_FEATURE_NETSTAT_PRG( \
3115      "\n        -p      Display PID/Program name for sockets" \
3116         )
3117
3118 #define nice_trivial_usage \
3119        "[-n ADJUST] [PROG [ARGS]]"
3120 #define nice_full_usage "\n\n" \
3121        "Run PROG with modified scheduling priority\n" \
3122      "\nOptions:" \
3123      "\n        -n ADJUST       Adjust priority by ADJUST" \
3124
3125 #define nmeter_trivial_usage \
3126        "format_string"
3127 #define nmeter_full_usage "\n\n" \
3128        "Monitor system in real time\n\n" \
3129        "Format specifiers:\n" \
3130        "%Nc or %[cN]    Monitor CPU. N - bar size, default 10\n" \
3131        "                (displays: S:system U:user N:niced D:iowait I:irq i:softirq)\n" \
3132        "%[niface]       Monitor network interface 'iface'\n" \
3133        "%m              Monitor allocated memory\n" \
3134        "%[mf]           Monitor free memory\n" \
3135        "%[mt]           Monitor total memory\n" \
3136        "%s              Monitor allocated swap\n" \
3137        "%f              Monitor number of used file descriptors\n" \
3138        "%Ni             Monitor total/specific IRQ rate\n" \
3139        "%x              Monitor context switch rate\n" \
3140        "%p              Monitor forks\n" \
3141        "%[pn]           Monitor # of processes\n" \
3142        "%b              Monitor block io\n" \
3143        "%Nt             Show time (with N decimal points)\n" \
3144        "%Nd             Milliseconds between updates (default:1000)\n" \
3145        "%r              Print <cr> instead of <lf> at EOL" \
3146
3147 #define nmeter_example_usage \
3148        "nmeter '%250d%t %20c int %i bio %b mem %m forks%p'"
3149
3150 #define nohup_trivial_usage \
3151        "PROG [ARGS]"
3152 #define nohup_full_usage "\n\n" \
3153        "Run PROG immune to hangups, with output to a non-tty"
3154 #define nohup_example_usage \
3155        "$ nohup make &"
3156
3157 #define nslookup_trivial_usage \
3158        "[HOST] [SERVER]"
3159 #define nslookup_full_usage "\n\n" \
3160        "Query the nameserver for the IP address of the given HOST\n" \
3161        "optionally using a specified DNS server"
3162 #define nslookup_example_usage \
3163        "$ nslookup localhost\n" \
3164        "Server:     default\n" \
3165        "Address:    default\n" \
3166        "\n" \
3167        "Name:       debian\n" \
3168        "Address:    127.0.0.1\n"
3169
3170 #define od_trivial_usage \
3171        "[-aBbcDdeFfHhIiLlOovXx] " IF_DESKTOP("[-t TYPE] ") "[FILE]"
3172 #define od_full_usage "\n\n" \
3173        "Write an unambiguous representation, octal bytes by default, of FILE\n" \
3174        "to standard output. With no FILE or when FILE is -, read standard input."
3175
3176 #define openvt_trivial_usage \
3177        "[-c N] [-sw] [PROG [ARGS]]"
3178 #define openvt_full_usage "\n\n" \
3179        "Start PROG on a new virtual terminal\n" \
3180      "\nOptions:" \
3181      "\n        -c N    Use specified VT" \
3182      "\n        -s      Switch to the VT" \
3183 /*   "\n        -l      Run PROG as login shell (by prepending '-')" */ \
3184      "\n        -w      Wait for PROG to exit" \
3185
3186 #define openvt_example_usage \
3187        "openvt 2 /bin/ash\n"
3188
3189 #define parse_trivial_usage \
3190        "[-n maxtokens] [-m mintokens] [-d delims] [-f flags] file ..."
3191 #define parse_full_usage "\n\n" \
3192        "[-n maxtokens] [-m mintokens] [-d delims] [-f flags] file ..."
3193
3194 #define passwd_trivial_usage \
3195        "[OPTIONS] [USER]"
3196 #define passwd_full_usage "\n\n" \
3197        "Change USER's password. If no USER is specified,\n" \
3198        "changes the password for the current user.\n" \
3199      "\nOptions:" \
3200      "\n        -a      Algorithm to use for password (choices: des, md5)" /* ", sha1)" */ \
3201      "\n        -d      Delete password for the account" \
3202      "\n        -l      Lock (disable) account" \
3203      "\n        -u      Unlock (re-enable) account" \
3204
3205 #define chpasswd_trivial_usage \
3206         IF_LONG_OPTS("[--md5|--encrypted]") IF_NOT_LONG_OPTS("[-m|-e]")
3207 #define chpasswd_full_usage "\n\n" \
3208        "Read user:password information from stdin " \
3209        "and update /etc/passwd accordingly.\n" \
3210      "\nOptions:" \
3211         IF_LONG_OPTS( \
3212      "\n        -e,--encrypted  Supplied passwords are in encrypted form" \
3213      "\n        -m,--md5        Use MD5 encryption instead of DES" \
3214         ) \
3215         IF_NOT_LONG_OPTS( \
3216      "\n        -e      Supplied passwords are in encrypted form" \
3217      "\n        -m      Use MD5 encryption instead of DES" \
3218         )
3219
3220 #define patch_trivial_usage \
3221        "[-p NUM] [-i DIFF] [-R]"
3222 #define patch_full_usage "\n\n" \
3223        "        -p NUM  Strip NUM leading components from file names" \
3224      "\n        -i DIFF Read DIFF instead of stdin" \
3225      "\n        -R      Reverse patch" \
3226
3227 #define patch_example_usage \
3228        "$ patch -p1 < example.diff\n" \
3229        "$ patch -p0 -i example.diff"
3230
3231 #define pgrep_trivial_usage \
3232        "[-flnovx] [-s SID|-P PPID|PATTERN]"
3233 #define pgrep_full_usage "\n\n" \
3234        "Display process(es) selected by regex PATTERN\n" \
3235      "\nOptions:" \
3236      "\n        -l      Show command name too" \
3237      "\n        -f      Match against entire command line" \
3238      "\n        -n      Show the newest process only" \
3239      "\n        -o      Show the oldest process only" \
3240      "\n        -v      Negate the match" \
3241      "\n        -x      Match whole name (not substring)" \
3242      "\n        -s      Match session ID (0 for current)" \
3243      "\n        -P      Match parent process ID" \
3244
3245 #if (ENABLE_FEATURE_PIDOF_SINGLE || ENABLE_FEATURE_PIDOF_OMIT)
3246 #define pidof_trivial_usage \
3247        "[OPTIONS] [NAME...]"
3248 #define USAGE_PIDOF "\n\nOptions:"
3249 #else
3250 #define pidof_trivial_usage \
3251        "[NAME...]"
3252 #define USAGE_PIDOF /* none */
3253 #endif
3254 #define pidof_full_usage "\n\n" \
3255        "List PIDs of all processes with names that match NAMEs" \
3256         USAGE_PIDOF \
3257         IF_FEATURE_PIDOF_SINGLE( \
3258      "\n        -s      Show only one PID") \
3259         IF_FEATURE_PIDOF_OMIT( \
3260      "\n        -o PID  Omit given pid" \
3261      "\n                Use %PPID to omit pid of pidof's parent") \
3262
3263 #define pidof_example_usage \
3264        "$ pidof init\n" \
3265        "1\n" \
3266         IF_FEATURE_PIDOF_OMIT( \
3267        "$ pidof /bin/sh\n20351 5973 5950\n") \
3268         IF_FEATURE_PIDOF_OMIT( \
3269        "$ pidof /bin/sh -o %PPID\n20351 5950")
3270
3271 #if !ENABLE_FEATURE_FANCY_PING
3272 #define ping_trivial_usage \
3273        "host"
3274 #define ping_full_usage "\n\n" \
3275        "Send ICMP ECHO_REQUEST packets to network hosts"
3276 #define ping6_trivial_usage \
3277        "host"
3278 #define ping6_full_usage "\n\n" \
3279        "Send ICMP ECHO_REQUEST packets to network hosts"
3280 #else
3281 #define ping_trivial_usage \
3282        "[OPTIONS] HOST"
3283 #define ping_full_usage "\n\n" \
3284        "Send ICMP ECHO_REQUEST packets to network hosts\n" \
3285      "\nOptions:" \
3286      "\n        -4, -6          Force IPv4 or IPv6 hostname resolution" \
3287      "\n        -c CNT          Send only CNT pings" \
3288      "\n        -s SIZE         Send SIZE data bytes in packets (default:56)" \
3289      "\n        -I IFACE/IP     Use interface or IP address as source" \
3290      "\n        -W SEC          Seconds to wait for the first response (default:10)" \
3291      "\n                        (after all -c CNT packets are sent)" \
3292      "\n        -w SEC          Seconds until ping exits (default:infinite)" \
3293      "\n                        (can exit earlier with -c CNT)" \
3294      "\n        -q              Quiet, only displays output at start" \
3295      "\n                        and when finished" \
3296
3297 #define ping6_trivial_usage \
3298        "[OPTIONS] HOST"
3299 #define ping6_full_usage "\n\n" \
3300        "Send ICMP ECHO_REQUEST packets to network hosts\n" \
3301      "\nOptions:" \
3302      "\n        -c CNT          Send only CNT pings" \
3303      "\n        -s SIZE         Send SIZE data bytes in packets (default:56)" \
3304      "\n        -I IFACE/IP     Use interface or IP address as source" \
3305      "\n        -q              Quiet, only displays output at start" \
3306      "\n                        and when finished" \
3307
3308 #endif
3309 #define ping_example_usage \
3310        "$ ping localhost\n" \
3311        "PING slag (127.0.0.1): 56 data bytes\n" \
3312        "64 bytes from 127.0.0.1: icmp_seq=0 ttl=255 time=20.1 ms\n" \
3313        "\n" \
3314        "--- debian ping statistics ---\n" \
3315        "1 packets transmitted, 1 packets received, 0% packet loss\n" \
3316        "round-trip min/avg/max = 20.1/20.1/20.1 ms\n"
3317 #define ping6_example_usage \
3318        "$ ping6 ip6-localhost\n" \
3319        "PING ip6-localhost (::1): 56 data bytes\n" \
3320        "64 bytes from ::1: icmp6_seq=0 ttl=64 time=20.1 ms\n" \
3321        "\n" \
3322        "--- ip6-localhost ping statistics ---\n" \
3323        "1 packets transmitted, 1 packets received, 0% packet loss\n" \
3324        "round-trip min/avg/max = 20.1/20.1/20.1 ms\n"
3325
3326 #define pipe_progress_trivial_usage NOUSAGE_STR
3327 #define pipe_progress_full_usage ""
3328
3329 #define pivot_root_trivial_usage \
3330        "NEW_ROOT PUT_OLD"
3331 #define pivot_root_full_usage "\n\n" \
3332        "Move the current root file system to PUT_OLD and make NEW_ROOT\n" \
3333        "the new root file system"
3334
3335 #define pkill_trivial_usage \
3336        "[-l|-SIGNAL] [-fnovx] [-s SID|-P PPID|PATTERN]"
3337 #define pkill_full_usage "\n\n" \
3338        "Send a signal to process(es) selected by regex PATTERN\n" \
3339      "\nOptions:" \
3340      "\n        -l      List all signals" \
3341      "\n        -f      Match against entire command line" \
3342      "\n        -n      Signal the newest process only" \
3343      "\n        -o      Signal the oldest process only" \
3344      "\n        -v      Negate the match" \
3345      "\n        -x      Match whole name (not substring)" \
3346      "\n        -s      Match session ID (0 for current)" \
3347      "\n        -P      Match parent process ID" \
3348
3349 #define popmaildir_trivial_usage \
3350        "[OPTIONS] Maildir [connection-helper ...]"
3351 #define popmaildir_full_usage "\n\n" \
3352        "Fetch content of remote mailbox to local maildir\n" \
3353      "\nOptions:" \
3354      "\n        -b              Binary mode. Ignored" \
3355      "\n        -d              Debug. Ignored" \
3356      "\n        -m              Show used memory. Ignored" \
3357      "\n        -V              Show version. Ignored" \
3358      "\n        -c              Use tcpclient. Ignored" \
3359      "\n        -a              Use APOP protocol. Implied. If server supports APOP -> use it" \
3360      "\n        -s              Skip authorization" \
3361      "\n        -T              Get messages with TOP instead with RETR" \
3362      "\n        -k              Keep retrieved messages on the server" \
3363      "\n        -t timeout      Set network timeout" \
3364      IF_FEATURE_POPMAILDIR_DELIVERY( \
3365      "\n        -F \"program arg1 arg2 ...\"    Filter by program. May be multiple" \
3366      "\n        -M \"program arg1 arg2 ...\"    Deliver by program" \
3367      ) \
3368      "\n        -R size         Remove old messages on the server >= size (in bytes). Ignored" \
3369      "\n        -Z N1-N2        Remove messages from N1 to N2 (dangerous). Ignored" \
3370      "\n        -L size         Do not retrieve new messages >= size (in bytes). Ignored" \
3371      "\n        -H lines        Type specified number of lines of a message. Ignored"
3372 #define popmaildir_example_usage \
3373        "$ popmaildir -k ~/Maildir -- nc pop.drvv.ru 110 [<password_file]\n" \
3374        "$ popmaildir ~/Maildir -- openssl s_client -quiet -connect pop.gmail.com:995 [<password_file]\n"
3375
3376 #define poweroff_trivial_usage \
3377        "[-d delay] [-n] [-f]"
3378 #define poweroff_full_usage "\n\n" \
3379        "Halt and shut off power\n" \
3380      "\nOptions:" \
3381      "\n        -d      Delay interval for halting" \
3382      "\n        -n      No call to sync()" \
3383      "\n        -f      Force power off (don't go through init)" \
3384
3385 #define printenv_trivial_usage \
3386        "[VARIABLES...]"
3387 #define printenv_full_usage "\n\n" \
3388        "Print all or part of environment.\n" \
3389        "If no environment VARIABLE specified, print them all."
3390
3391 #define printf_trivial_usage \
3392        "FORMAT [ARGUMENT...]"
3393 #define printf_full_usage "\n\n" \
3394        "Format and print ARGUMENT(s) according to FORMAT,\n" \
3395        "where FORMAT controls the output exactly as in C printf"
3396 #define printf_example_usage \
3397        "$ printf \"Val=%d\\n\" 5\n" \
3398        "Val=5\n"
3399
3400
3401 #if ENABLE_DESKTOP
3402
3403 #define ps_trivial_usage \
3404        ""
3405 #define ps_full_usage "\n\n" \
3406        "Report process status\n" \
3407      "\nOptions:" \
3408      "\n        -o col1,col2=header     Select columns for display" \
3409
3410 #else /* !ENABLE_DESKTOP */
3411
3412 #if !ENABLE_SELINUX && !ENABLE_FEATURE_PS_WIDE
3413 #define USAGE_PS "\nThis version of ps accepts no options"
3414 #else
3415 #define USAGE_PS "\nOptions:"
3416 #endif
3417
3418 #define ps_trivial_usage \
3419        ""
3420 #define ps_full_usage "\n\n" \
3421        "Report process status\n" \
3422         USAGE_PS \
3423         IF_SELINUX( \
3424      "\n        -Z      Show SE Linux context" \
3425         ) \
3426         IF_FEATURE_PS_WIDE( \
3427      "\n        w       Wide output" \
3428         )
3429
3430 #endif /* ENABLE_DESKTOP */
3431
3432 #define ps_example_usage \
3433        "$ ps\n" \
3434        "  PID  Uid      Gid State Command\n" \
3435        "    1 root     root     S init\n" \
3436        "    2 root     root     S [kflushd]\n" \
3437        "    3 root     root     S [kupdate]\n" \
3438        "    4 root     root     S [kpiod]\n" \
3439        "    5 root     root     S [kswapd]\n" \
3440        "  742 andersen andersen S [bash]\n" \
3441        "  743 andersen andersen S -bash\n" \
3442        "  745 root     root     S [getty]\n" \
3443        " 2990 andersen andersen R ps\n" \
3444
3445 #define pscan_trivial_usage \
3446        "[-cb] [-p MIN_PORT] [-P MAX_PORT] [-t TIMEOUT] [-T MIN_RTT] HOST"
3447 #define pscan_full_usage "\n\n" \
3448        "Scan a host, print all open ports\n" \
3449      "\nOptions:" \
3450      "\n        -c      Show closed ports too" \
3451      "\n        -b      Show blocked ports too" \
3452      "\n        -p      Scan from this port (default 1)" \
3453      "\n        -P      Scan up to this port (default 1024)" \
3454      "\n        -t      Timeout (default 5000 ms)" \
3455      "\n        -T      Minimum rtt (default 5 ms, increase for congested hosts)" \
3456
3457 #define pwd_trivial_usage \
3458        ""
3459 #define pwd_full_usage "\n\n" \
3460        "Print the full filename of the current working directory"
3461 #define pwd_example_usage \
3462        "$ pwd\n" \
3463        "/root\n"
3464
3465 #define raidautorun_trivial_usage \
3466        "DEVICE"
3467 #define raidautorun_full_usage "\n\n" \
3468        "Tell the kernel to automatically search and start RAID arrays"
3469 #define raidautorun_example_usage \
3470        "$ raidautorun /dev/md0"
3471
3472 #define rdate_trivial_usage \
3473        "[-sp] HOST"
3474 #define rdate_full_usage "\n\n" \
3475        "Get and possibly set the system date and time from a remote HOST\n" \
3476      "\nOptions:" \
3477      "\n        -s      Set the system date and time (default)" \
3478      "\n        -p      Print the date and time" \
3479
3480 #define rdev_trivial_usage \
3481        ""
3482 #define rdev_full_usage "\n\n" \
3483        "Print the device node associated with the filesystem mounted at '/'"
3484 #define rdev_example_usage \
3485        "$ rdev\n" \
3486        "/dev/mtdblock9 /\n"
3487
3488 #define readahead_trivial_usage \
3489        "[FILE]..."
3490 #define readahead_full_usage "\n\n" \
3491        "Preload FILE(s) in RAM cache so that subsequent reads for those" \
3492        "files do not block on disk I/O"
3493
3494 #define readlink_trivial_usage \
3495         IF_FEATURE_READLINK_FOLLOW("[-fnv] ") "FILE"
3496 #define readlink_full_usage "\n\n" \
3497        "Display the value of a symlink" \
3498         IF_FEATURE_READLINK_FOLLOW( "\n" \
3499      "\nOptions:" \
3500      "\n        -f      Canonicalize by following all symlinks" \
3501      "\n        -n      Don't add newline" \
3502      "\n        -v      Verbose" \
3503         ) \
3504
3505 #define readprofile_trivial_usage \
3506        "[OPTIONS]"
3507 #define readprofile_full_usage "\n\n" \
3508        "Options:" \
3509      "\n        -m mapfile      (Default: /boot/System.map)" \
3510      "\n        -p profile      (Default: /proc/profile)" \
3511      "\n        -M mult         Set the profiling multiplier to mult" \
3512      "\n        -i              Print only info about the sampling step" \
3513      "\n        -v              Verbose" \
3514      "\n        -a              Print all symbols, even if count is 0" \
3515      "\n        -b              Print individual histogram-bin counts" \
3516      "\n        -s              Print individual counters within functions" \
3517      "\n        -r              Reset all the counters (root only)" \
3518      "\n        -n              Disable byte order auto-detection" \
3519
3520 #define realpath_trivial_usage \
3521        "pathname..."
3522 #define realpath_full_usage "\n\n" \
3523        "Return the absolute pathnames of given argument"
3524
3525 #define reboot_trivial_usage \
3526        "[-d delay] [-n] [-f]"
3527 #define reboot_full_usage "\n\n" \
3528        "Reboot the system\n" \
3529      "\nOptions:" \
3530      "\n        -d      Delay interval for rebooting" \
3531      "\n        -n      No call to sync()" \
3532      "\n        -f      Force reboot (don't go through init)" \
3533
3534 #define reformime_trivial_usage \
3535        "[OPTIONS] [FILE]..."
3536 #define reformime_full_usage "\n\n" \
3537        "Parse MIME-encoded message\n" \
3538      "\nOptions:" \
3539      "\n        -x prefix       Extract content of MIME sections to files" \
3540      "\n        -X prog [args]  Filter content of MIME sections through prog." \
3541      "\n                        Must be the last option" \
3542      "\n" \
3543      "\nOther options are silently ignored." \
3544
3545 #define renice_trivial_usage \
3546        "{{-n INCREMENT} | PRIORITY} [[-p | -g | -u] ID...]"
3547 #define renice_full_usage "\n\n" \
3548        "Change priority of running processes\n" \
3549      "\nOptions:" \
3550      "\n        -n      Adjust current nice value (smaller is faster)" \
3551      "\n        -p      Process id(s) (default)" \
3552      "\n        -g      Process group id(s)" \
3553      "\n        -u      Process user name(s) and/or id(s)" \
3554
3555 #define scriptreplay_trivial_usage \
3556        "timingfile [typescript [divisor]]"
3557 #define scriptreplay_full_usage "\n\n" \
3558        "Play back typescripts, using timing information"
3559
3560 #define reset_trivial_usage \
3561        ""
3562 #define reset_full_usage "\n\n" \
3563        "Reset the screen"
3564
3565 #define resize_trivial_usage \
3566        ""
3567 #define resize_full_usage "\n\n" \
3568        "Resize the screen"
3569
3570 #define restorecon_trivial_usage \
3571        "[-iFnrRv] [-e excludedir]... [-o filename] [-f filename | pathname]"
3572 #define restorecon_full_usage "\n\n" \
3573        "Reset security contexts of files in pathname\n" \
3574      "\n        -i              Ignore files that do not exist" \
3575      "\n        -f file         File with list of files to process. Use - for stdin" \
3576      "\n        -e directory    Directory to exclude" \
3577      "\n        -R,-r           Recurse directories" \
3578      "\n        -n              Don't change any file labels" \
3579      "\n        -o file         Save list of files with incorrect context" \
3580      "\n        -v              Verbose" \
3581      "\n        -vv             Show changed labels" \
3582      "\n        -F              Force reset of context to match file_context" \
3583      "\n                        for customizable files, or the user section," \
3584      "\n                        if it has changed" \
3585
3586 #define rm_trivial_usage \
3587        "[OPTIONS] FILE..."
3588 #define rm_full_usage "\n\n" \
3589        "Remove (unlink) the FILE(s). Use '--' to\n" \
3590        "indicate that all following arguments are non-options.\n" \
3591      "\nOptions:" \
3592      "\n        -i      Always prompt before removing" \
3593      "\n        -f      Never prompt" \
3594      "\n        -r,-R   Remove directories recursively" \
3595
3596 #define rm_example_usage \
3597        "$ rm -rf /tmp/foo\n"
3598
3599 #define rmdir_trivial_usage \
3600        "[OPTIONS] DIRECTORY..."
3601 #define rmdir_full_usage "\n\n" \
3602        "Remove the DIRECTORY, if it is empty.\n" \
3603      "\nOptions:" \
3604      IF_FEATURE_RMDIR_LONG_OPTIONS( \
3605      "\n        -p|--parents    Include parents" \
3606      "\n        -ignore-fail-on-non-empty" \
3607      ) \
3608      IF_NOT_FEATURE_RMDIR_LONG_OPTIONS( \
3609      "\n        -p      Include parents" \
3610      )
3611
3612 #define rmdir_example_usage \
3613        "# rmdir /tmp/foo\n"
3614
3615 #define rmmod_trivial_usage \
3616        "[OPTIONS] [MODULE]..."
3617 #define rmmod_full_usage "\n\n" \
3618        "Unload the specified kernel modules from the kernel\n" \
3619      "\nOptions:" \
3620      "\n        -w      Wait until the module is no longer used" \
3621      "\n        -f      Force unloading" \
3622      "\n        -a      Remove all unused modules (recursively)" \
3623
3624 #define rmmod_example_usage \
3625        "$ rmmod tulip\n"
3626
3627 #define route_trivial_usage \
3628        "[{add|del|delete}]"
3629 #define route_full_usage "\n\n" \
3630        "Edit kernel routing tables\n" \
3631      "\nOptions:" \
3632      "\n        -n      Don't resolve names" \
3633      "\n        -e      Display other/more information" \
3634      "\n        -A inet" IF_FEATURE_IPV6("{6}") "       Select address family" \
3635
3636 #define rpm_trivial_usage \
3637        "-i -q[ildc]p package.rpm"
3638 #define rpm_full_usage "\n\n" \
3639        "Manipulate RPM packages\n" \
3640      "\nOptions:" \
3641      "\n        -i      Install package" \
3642      "\n        -q      Query package" \
3643      "\n        -p      Query uninstalled package" \
3644      "\n        -i      Show information" \
3645      "\n        -l      List contents" \
3646      "\n        -d      List documents" \
3647      "\n        -c      List config files" \
3648
3649 #define rpm2cpio_trivial_usage \
3650        "package.rpm"
3651 #define rpm2cpio_full_usage "\n\n" \
3652        "Output a cpio archive of the rpm file"
3653
3654 #define rtcwake_trivial_usage \
3655        "[-a | -l | -u] [-d DEV] [-m MODE] [-s SEC | -t TIME]"
3656 #define rtcwake_full_usage "\n\n" \
3657        "Enter a system sleep state until specified wakeup time\n" \
3658         IF_LONG_OPTS( \
3659      "\n        -a,--auto       Read clock mode from adjtime" \
3660      "\n        -l,--local      Clock is set to local time" \
3661      "\n        -u,--utc        Clock is set to UTC time" \
3662      "\n        -d,--device=DEV Specify the RTC device" \
3663      "\n        -m,--mode=MODE  Set the sleep state (default: standby)" \
3664      "\n        -s,--seconds=SEC Set the timeout in SEC seconds from now" \
3665      "\n        -t,--time=TIME  Set the timeout to TIME seconds from epoch" \
3666         ) \
3667         IF_NOT_LONG_OPTS( \
3668      "\n        -a      Read clock mode from adjtime" \
3669      "\n        -l      Clock is set to local time" \
3670      "\n        -u      Clock is set to UTC time" \
3671      "\n        -d DEV  Specify the RTC device" \
3672      "\n        -m MODE Set the sleep state (default: standby)" \
3673      "\n        -s SEC  Set the timeout in SEC seconds from now" \
3674      "\n        -t TIME Set the timeout to TIME seconds from epoch" \
3675         )
3676
3677 #define runcon_trivial_usage \
3678        "[-c] [-u USER] [-r ROLE] [-t TYPE] [-l RANGE] PROG [ARGS]\n" \
3679        "        runcon CONTEXT PROG [ARGS]"
3680 #define runcon_full_usage "\n\n" \
3681        "Run PROG in a different security context\n" \
3682      "\n        CONTEXT         Complete security context\n" \
3683         IF_FEATURE_RUNCON_LONG_OPTIONS( \
3684      "\n        -c,--compute    Compute process transition context before modifying" \
3685      "\n        -t,--type=TYPE  Type (for same role as parent)" \
3686      "\n        -u,--user=USER  User identity" \
3687      "\n        -r,--role=ROLE  Role" \
3688      "\n        -l,--range=RNG  Levelrange" \
3689         ) \
3690         IF_NOT_FEATURE_RUNCON_LONG_OPTIONS( \
3691      "\n        -c      Compute process transition context before modifying" \
3692      "\n        -t TYPE Type (for same role as parent)" \
3693      "\n        -u USER User identity" \
3694      "\n        -r ROLE Role" \
3695      "\n        -l RNG  Levelrange" \
3696         )
3697
3698 #define run_parts_trivial_usage \
3699        "[-t] "IF_FEATURE_RUN_PARTS_FANCY("[-l] ")"[-a ARG] [-u MASK] DIRECTORY"
3700 #define run_parts_full_usage "\n\n" \
3701        "Run a bunch of scripts in a directory\n" \
3702      "\nOptions:" \
3703      "\n        -t      Print what would be run, but don't actually run anything" \
3704      "\n        -a ARG  Pass ARG as argument for every program" \
3705      "\n        -u MASK Set the umask to MASK before running every program" \
3706         IF_FEATURE_RUN_PARTS_FANCY( \
3707      "\n        -l      Print names of all matching files even if they are not executable" \
3708         )
3709
3710 #define run_parts_example_usage \
3711        "$ run-parts -a start /etc/init.d\n" \
3712        "$ run-parts -a stop=now /etc/init.d\n\n" \
3713        "Let's assume you have a script foo/dosomething:\n" \
3714        "#!/bin/sh\n" \
3715        "for i in $*; do eval $i; done; unset i\n" \
3716        "case \"$1\" in\n" \
3717        "start*) echo starting something;;\n" \
3718        "stop*) set -x; shutdown -h $stop;;\n" \
3719        "esac\n\n" \
3720        "Running this yields:\n" \
3721        "$run-parts -a stop=+4m foo/\n" \
3722        "+ shutdown -h +4m"
3723
3724 #define runlevel_trivial_usage \
3725        "[utmp]"
3726 #define runlevel_full_usage "\n\n" \
3727        "Find the current and previous system runlevel.\n\n" \
3728        "If no utmp file exists or if no runlevel record can be found,\n" \
3729        "print \"unknown\""
3730 #define runlevel_example_usage \
3731        "$ runlevel /var/run/utmp\n" \
3732        "N 2"
3733
3734 #define runsv_trivial_usage \
3735        "dir"
3736 #define runsv_full_usage "\n\n" \
3737        "Start and monitor a service and optionally an appendant log service"
3738
3739 #define runsvdir_trivial_usage \
3740        "[-P] [-s SCRIPT] dir"
3741 #define runsvdir_full_usage "\n\n" \
3742        "Start a runsv process for each subdirectory. If it exits, restart it.\n" \
3743      "\n        -P              Put each runsv in a new session" \
3744      "\n        -s SCRIPT       Run SCRIPT <signo> after signal is processed" \
3745
3746 #define rx_trivial_usage \
3747        "FILE"
3748 #define rx_full_usage "\n\n" \
3749        "Receive a file using the xmodem protocol"
3750 #define rx_example_usage \
3751        "$ rx /tmp/foo\n"
3752
3753 #define script_trivial_usage \
3754        "[-afq" IF_SCRIPTREPLAY("t") "] [-c PROG] [OUTFILE]"
3755 #define script_full_usage "\n\n" \
3756        "Options:" \
3757      "\n        -a      Append output" \
3758      "\n        -c      Run PROG, not shell" \
3759      "\n        -f      Flush output after each write" \
3760      "\n        -q      Quiet" \
3761         IF_SCRIPTREPLAY( \
3762      "\n        -t      Send timing to stderr" \
3763         )
3764
3765 #define sed_trivial_usage \
3766        "[-efinr] SED_CMD [FILE]..."
3767 #define sed_full_usage "\n\n" \
3768        "Options:" \
3769      "\n        -e CMD  Add CMD to sed commands to be executed" \
3770      "\n        -f FILE Add FILE contents to sed commands to be executed" \
3771      "\n        -i      Edit files in-place" \
3772      "\n        -n      Suppress automatic printing of pattern space" \
3773      "\n        -r      Use extended regex syntax" \
3774      "\n" \
3775      "\nIf no -e or -f is given, the first non-option argument is taken as the sed" \
3776      "\ncommand to interpret. All remaining arguments are names of input files; if no" \
3777      "\ninput files are specified, then the standard input is read. Source files" \
3778      "\nwill not be modified unless -i option is given." \
3779
3780 #define sed_example_usage \
3781        "$ echo \"foo\" | sed -e 's/f[a-zA-Z]o/bar/g'\n" \
3782        "bar\n"
3783
3784 #define selinuxenabled_trivial_usage NOUSAGE_STR
3785 #define selinuxenabled_full_usage ""
3786
3787 #define sendmail_trivial_usage \
3788        "[OPTIONS] [RECIPIENT_EMAIL]..."
3789 #define sendmail_full_usage "\n\n" \
3790        "Read email from stdin and send it\n" \
3791      "\nStandard options:" \
3792      "\n        -t              Read additional recipients from message body" \
3793      "\n        -f sender       Sender (required)" \
3794      "\n        -o options      Various options. -oi implied, others are ignored" \
3795      "\n" \
3796      "\nBusybox specific options:" \
3797      "\n        -w seconds      Network timeout" \
3798      "\n        -H 'PROG ARGS'  Run connection helper" \
3799      "\n                        Examples:" \
3800      "\n                        -H 'exec openssl s_client -quiet -tls1 -starttls smtp" \
3801      "\n                                -connect smtp.gmail.com:25' <email.txt" \
3802      "\n                                [4<username_and_passwd.txt | -au<username> -ap<password>]" \
3803      "\n                        -H 'exec openssl s_client -quiet -tls1" \
3804      "\n                                -connect smtp.gmail.com:465' <email.txt" \
3805      "\n                                [4<username_and_passwd.txt | -au<username> -ap<password>]" \
3806      "\n        -S server[:port] Server" \
3807      "\n        -au<username>   Username for AUTH LOGIN" \
3808      "\n        -ap<password>   Password for AUTH LOGIN" \
3809      "\n        -am<method>     Authentication method. Ignored. LOGIN is implied" \
3810      "\n" \
3811      "\nOther options are silently ignored; -oi -t is implied" \
3812         IF_MAKEMIME( \
3813      "\nUse makemime applet to create message with attachments" \
3814         )
3815
3816 #define seq_trivial_usage \
3817        "[-w] [-s SEP] [FIRST [INC]] LAST"
3818 #define seq_full_usage "\n\n" \
3819        "Print numbers from FIRST to LAST, in steps of INC.\n" \
3820        "FIRST, INC default to 1\n" \
3821      "\nOptions:" \
3822      "\n        -w      Pad to last with leading zeros" \
3823      "\n        -s SEP  String separator" \
3824
3825 #define sestatus_trivial_usage \
3826        "[-vb]"
3827 #define sestatus_full_usage "\n\n" \
3828        "        -v      Verbose" \
3829      "\n        -b      Display current state of booleans" \
3830
3831 #define setconsole_trivial_usage \
3832        "[-r" IF_FEATURE_SETCONSOLE_LONG_OPTIONS("|--reset") "] [DEVICE]"
3833 #define setconsole_full_usage "\n\n" \
3834        "Redirect system console output to DEVICE (default: /dev/tty)\n" \
3835      "\nOptions:" \
3836      "\n        -r      Reset output to /dev/console" \
3837
3838 #define setenforce_trivial_usage \
3839        "[Enforcing | Permissive | 1 | 0]"
3840 #define setenforce_full_usage ""
3841
3842 #define setfiles_trivial_usage \
3843        "[-dnpqsvW] [-e dir]... [-o file] [-r alt_root_path]" \
3844         IF_FEATURE_SETFILES_CHECK_OPTION( \
3845        " [-c policyfile] spec_file" \
3846         ) \
3847        " pathname"
3848 #define setfiles_full_usage "\n\n" \
3849        "Reset file contexts under pathname according to spec_file\n" \
3850         IF_FEATURE_SETFILES_CHECK_OPTION( \
3851      "\n        -c file Check the validity of the contexts against the specified binary policy" \
3852         ) \
3853      "\n        -d      Show which specification matched each file" \
3854      "\n        -l      Log changes in file labels to syslog" \
3855      "\n        -n      Don't change any file labels" \
3856      "\n        -q      Suppress warnings" \
3857      "\n        -r dir  Use an altenate root path" \
3858      "\n        -e dir  Exclude directory" \
3859      "\n        -F      Force reset of context to match file_context for customizable files" \
3860      "\n        -o file Save list of files with incorrect context" \
3861      "\n        -s      Take a list of files from standard input (instead of command line)" \
3862      "\n        -v      Show changes in file labels, if type or role are changing" \
3863      "\n        -vv     Show changes in file labels, if type, role, or user are changing" \
3864      "\n        -W      Display warnings about entries that had no matching files" \
3865
3866 #define setfont_trivial_usage \
3867        "FONT [-m MAPFILE] [-C TTY]"
3868 #define setfont_full_usage "\n\n" \
3869        "Load a console font\n" \
3870      "\nOptions:" \
3871      "\n        -m MAPFILE      Load console screen map" \
3872      "\n        -C TTY          Affect TTY instead of /dev/tty" \
3873
3874 #define setfont_example_usage \
3875        "$ setfont -m koi8-r /etc/i18n/fontname\n"
3876
3877 #define setkeycodes_trivial_usage \
3878        "SCANCODE KEYCODE..."
3879 #define setkeycodes_full_usage "\n\n" \
3880        "Set entries into the kernel's scancode-to-keycode map,\n" \
3881        "allowing unusual keyboards to generate usable keycodes.\n\n" \
3882        "SCANCODE may be either xx or e0xx (hexadecimal),\n" \
3883        "and KEYCODE is given in decimal" \
3884
3885 #define setkeycodes_example_usage \
3886        "$ setkeycodes e030 127\n"
3887
3888 #define setlogcons_trivial_usage \
3889        "N"
3890 #define setlogcons_full_usage "\n\n" \
3891        "Redirect the kernel output to console N (0 for current)"
3892
3893 #define setsebool_trivial_usage \
3894        "boolean value"
3895
3896 #define setsebool_full_usage "\n\n" \
3897        "Change boolean setting"
3898
3899 #define setsid_trivial_usage \
3900        "PROG [ARG...]"
3901 #define setsid_full_usage "\n\n" \
3902        "Run PROG in a new session. PROG will have no controlling terminal\n" \
3903        "and will not be affected by keyboard signals (Ctrl-C etc).\n" \
3904        "See setsid(2) for details." \
3905
3906 #define lash_trivial_usage \
3907        "[FILE]...\n" \
3908        "or: sh -c command [args]..."
3909 #define lash_full_usage "\n\n" \
3910        "lash is deprecated, please use hush"
3911
3912 #define last_trivial_usage \
3913        ""IF_FEATURE_LAST_FANCY("[-HW] [-f file]")
3914 #define last_full_usage "\n\n" \
3915        "Show listing of the last users that logged into the system" \
3916         IF_FEATURE_LAST_FANCY( "\n" \
3917      "\nOptions:" \
3918 /*   "\n        -H      Show header line" */ \
3919      "\n        -W      Display with no host column truncation" \
3920      "\n        -f file Read from file instead of /var/log/wtmp" \
3921         )
3922
3923 #define showkey_trivial_usage \
3924        "[-a | -k | -s]"
3925 #define showkey_full_usage "\n\n" \
3926        "Show keys pressed\n" \
3927      "\nOptions:" \
3928      "\n        -a      Display decimal/octal/hex values of the keys" \
3929      "\n        -k      Display interpreted keycodes (default)" \
3930      "\n        -s      Display raw scan-codes" \
3931
3932 #define slattach_trivial_usage \
3933        "[-cehmLF] [-s SPEED] [-p PROTOCOL] DEVICE"
3934 #define slattach_full_usage "\n\n" \
3935        "Attach network interface(s) to serial line(s)\n" \
3936      "\nOptions:" \
3937      "\n        -p PROT Set protocol (slip, cslip, slip6, clisp6 or adaptive)" \
3938      "\n        -s SPD  Set line speed" \
3939      "\n        -e      Exit after initializing device" \
3940      "\n        -h      Exit when the carrier is lost" \
3941      "\n        -c PROG Run PROG when the line is hung up" \
3942      "\n        -m      Do NOT initialize the line in raw 8 bits mode" \
3943      "\n        -L      Enable 3-wire operation" \
3944      "\n        -F      Disable RTS/CTS flow control" \
3945
3946 #define sleep_trivial_usage \
3947         IF_FEATURE_FANCY_SLEEP("[") "N" IF_FEATURE_FANCY_SLEEP("]...")
3948 #define sleep_full_usage "\n\n" \
3949         IF_NOT_FEATURE_FANCY_SLEEP("Pause for N seconds") \
3950         IF_FEATURE_FANCY_SLEEP( \
3951        "Pause for a time equal to the total of the args given, where each arg can\n" \
3952        "have an optional suffix of (s)econds, (m)inutes, (h)ours, or (d)ays")
3953 #define sleep_example_usage \
3954        "$ sleep 2\n" \
3955        "[2 second delay results]\n" \
3956         IF_FEATURE_FANCY_SLEEP( \
3957        "$ sleep 1d 3h 22m 8s\n" \
3958        "[98528 second delay results]\n")
3959
3960 #define sort_trivial_usage \
3961        "[-nru" \
3962         IF_FEATURE_SORT_BIG("gMcszbdfimSTokt] [-o FILE] [-k start[.offset][opts][,end[.offset][opts]] [-t CHAR") \
3963        "] [FILE]..."
3964 #define sort_full_usage "\n\n" \
3965        "Sort lines of text\n" \
3966      "\nOptions:" \
3967         IF_FEATURE_SORT_BIG( \
3968      "\n        -b      Ignore leading blanks" \
3969      "\n        -c      Check whether input is sorted" \
3970      "\n        -d      Dictionary order (blank or alphanumeric only)" \
3971      "\n        -f      Ignore case" \
3972      "\n        -g      General numerical sort" \
3973      "\n        -i      Ignore unprintable characters" \
3974      "\n        -k      Sort key" \
3975      "\n        -M      Sort month" \
3976         ) \
3977      "\n        -n      Sort numbers" \
3978         IF_FEATURE_SORT_BIG( \
3979      "\n        -o      Output to file" \
3980      "\n        -k      Sort by key" \
3981      "\n        -t CHAR Key separator" \
3982         ) \
3983      "\n        -r      Reverse sort order" \
3984         IF_FEATURE_SORT_BIG( \
3985      "\n        -s      Stable (don't sort ties alphabetically)" \
3986         ) \
3987      "\n        -u      Suppress duplicate lines" \
3988         IF_FEATURE_SORT_BIG( \
3989      "\n        -z      Lines are terminated by NUL, not newline" \
3990      "\n        -mST    Ignored for GNU compatibility") \
3991
3992 #define sort_example_usage \
3993        "$ echo -e \"e\\nf\\nb\\nd\\nc\\na\" | sort\n" \
3994        "a\n" \
3995        "b\n" \
3996        "c\n" \
3997        "d\n" \
3998        "e\n" \
3999        "f\n" \
4000         IF_FEATURE_SORT_BIG( \
4001                 "$ echo -e \"c 3\\nb 2\\nd 2\" | $SORT -k 2,2n -k 1,1r\n" \
4002                 "d 2\n" \
4003                 "b 2\n" \
4004                 "c 3\n" \
4005         ) \
4006        ""
4007
4008 #define split_trivial_usage \
4009        "[OPTIONS] [INPUT [PREFIX]]"
4010 #define split_full_usage "\n\n" \
4011        "Options:" \
4012      "\n        -b n[k|m]       Split by bytes" \
4013      "\n        -l n            Split by lines" \
4014      "\n        -a n            Use n letters as suffix" \
4015
4016 #define split_example_usage \
4017        "$ split TODO foo\n" \
4018        "$ cat TODO | split -a 2 -l 2 TODO_\n"
4019
4020 #define start_stop_daemon_trivial_usage \
4021        "[OPTIONS] [-S|-K] ... [-- arguments...]"
4022 #define start_stop_daemon_full_usage "\n\n" \
4023        "Search for matching processes, and then\n" \
4024        "-K: stop all matching processes.\n" \
4025        "-S: start a process unless a matching process is found.\n" \
4026         IF_FEATURE_START_STOP_DAEMON_LONG_OPTIONS( \
4027      "\nProcess matching:" \
4028      "\n        -u,--user USERNAME|UID  Match only this user's processes" \
4029      "\n        -n,--name NAME          Match processes with NAME" \
4030      "\n                                in comm field in /proc/PID/stat" \
4031      "\n        -x,--exec EXECUTABLE    Match processes with this command" \
4032      "\n                                in /proc/PID/cmdline" \
4033      "\n        -p,--pidfile FILE       Match a process with PID from the file" \
4034      "\n        All specified conditions must match" \
4035      "\n-S only:" \
4036      "\n        -x,--exec EXECUTABLE    Program to run" \
4037      "\n        -a,--startas NAME       Zeroth argument" \
4038      "\n        -b,--background         Background" \
4039         IF_FEATURE_START_STOP_DAEMON_FANCY( \
4040      "\n        -N,--nicelevel N        Change nice level" \
4041         ) \
4042      "\n        -c,--chuid USER[:[GRP]] Change to user/group" \
4043      "\n        -m,--make-pidfile       Write PID to the pidfile specified by -p" \
4044      "\n-K only:" \
4045      "\n        -s,--signal SIG         Signal to send" \
4046      "\n        -t,--test               Match only, exit with 0 if a process is found" \
4047      "\nOther:" \
4048         IF_FEATURE_START_STOP_DAEMON_FANCY( \
4049      "\n        -o,--oknodo             Exit with status 0 if nothing is done" \
4050      "\n        -v,--verbose            Verbose" \
4051         ) \
4052      "\n        -q,--quiet              Quiet" \
4053         ) \
4054         IF_NOT_FEATURE_START_STOP_DAEMON_LONG_OPTIONS( \
4055      "\nProcess matching:" \
4056      "\n        -u USERNAME|UID Match only this user's processes" \
4057      "\n        -n NAME         Match processes with NAME" \
4058      "\n                        in comm field in /proc/PID/stat" \
4059      "\n        -x EXECUTABLE   Match processes with this command" \
4060      "\n                        command in /proc/PID/cmdline" \
4061      "\n        -p FILE         Match a process with PID from the file" \
4062      "\n        All specified conditions must match" \
4063      "\n-S only:" \
4064      "\n        -x EXECUTABLE   Program to run" \
4065      "\n        -a NAME         Zeroth argument" \
4066      "\n        -b              Background" \
4067         IF_FEATURE_START_STOP_DAEMON_FANCY( \
4068      "\n        -N N            Change nice level" \
4069         ) \
4070      "\n        -c USER[:[GRP]] Change to user/group" \
4071      "\n        -m              Write PID to the pidfile specified by -p" \
4072      "\n-K only:" \
4073      "\n        -s SIG          Signal to send" \
4074      "\n        -t              Match only, exit with 0 if a process is found" \
4075      "\nOther:" \
4076         IF_FEATURE_START_STOP_DAEMON_FANCY( \
4077      "\n        -o              Exit with status 0 if nothing is done" \
4078      "\n        -v              Verbose" \
4079         ) \
4080      "\n        -q              Quiet" \
4081         ) \
4082
4083 #define stat_trivial_usage \
4084        "[OPTIONS] FILE..."
4085 #define stat_full_usage "\n\n" \
4086        "Display file (default) or filesystem status\n" \
4087      "\nOptions:" \
4088         IF_FEATURE_STAT_FORMAT( \
4089      "\n        -c fmt  Use the specified format" \
4090         ) \
4091      "\n        -f      Display filesystem status" \
4092      "\n        -L      Dereference links" \
4093      "\n        -t      Display info in terse form" \
4094         IF_SELINUX( \
4095      "\n        -Z      Print security context" \
4096         ) \
4097         IF_FEATURE_STAT_FORMAT( \
4098        "\n\nValid format sequences for files:\n" \
4099        " %a     Access rights in octal\n" \
4100        " %A     Access rights in human readable form\n" \
4101        " %b     Number of blocks allocated (see %B)\n" \
4102        " %B     The size in bytes of each block reported by %b\n" \
4103        " %d     Device number in decimal\n" \
4104        " %D     Device number in hex\n" \
4105        " %f     Raw mode in hex\n" \
4106        " %F     File type\n" \
4107        " %g     Group ID of owner\n" \
4108        " %G     Group name of owner\n" \
4109        " %h     Number of hard links\n" \
4110        " %i     Inode number\n" \
4111        " %n     File name\n" \
4112        " %N     Quoted file name with dereference if symlink\n" \
4113        " %o     I/O block size\n" \
4114        " %s     Total size, in bytes\n" \
4115        " %t     Major device type in hex\n" \
4116        " %T     Minor device type in hex\n" \
4117        " %u     User ID of owner\n" \
4118        " %U     User name of owner\n" \
4119        " %x     Time of last access\n" \
4120        " %X     Time of last access as seconds since Epoch\n" \
4121        " %y     Time of last modification\n" \
4122        " %Y     Time of last modification as seconds since Epoch\n" \
4123        " %z     Time of last change\n" \
4124        " %Z     Time of last change as seconds since Epoch\n" \
4125        "\nValid format sequences for file systems:\n" \
4126        " %a     Free blocks available to non-superuser\n" \
4127        " %b     Total data blocks in file system\n" \
4128        " %c     Total file nodes in file system\n" \
4129        " %d     Free file nodes in file system\n" \
4130        " %f     Free blocks in file system\n" \
4131         IF_SELINUX( \
4132        " %C     Security context in SELinux\n" \
4133         ) \
4134        " %i     File System ID in hex\n" \
4135        " %l     Maximum length of filenames\n" \
4136        " %n     File name\n" \
4137        " %s     Block size (for faster transfer)\n" \
4138        " %S     Fundamental block size (for block counts)\n" \
4139        " %t     Type in hex\n" \
4140        " %T     Type in human readable form" \
4141         ) \
4142
4143 #define strings_trivial_usage \
4144        "[-afo] [-n LEN] [FILE]..."
4145 #define strings_full_usage "\n\n" \
4146        "Display printable strings in a binary file\n" \
4147      "\nOptions:" \
4148      "\n        -a      Scan whole file (default)" \
4149      "\n        -f      Precede strings with filenames" \
4150      "\n        -n LEN  At least LEN characters form a string (default 4)" \
4151      "\n        -o      Precede strings with decimal offsets" \
4152
4153 #define stty_trivial_usage \
4154        "[-a|g] [-F DEVICE] [SETTING]..."
4155 #define stty_full_usage "\n\n" \
4156        "Without arguments, prints baud rate, line discipline,\n" \
4157        "and deviations from stty sane\n" \
4158      "\nOptions:" \
4159      "\n        -F DEVICE       Open device instead of stdin" \
4160      "\n        -a              Print all current settings in human-readable form" \
4161      "\n        -g              Print in stty-readable form" \
4162      "\n        [SETTING]       See manpage" \
4163
4164 #define su_trivial_usage \
4165        "[OPTIONS] [-] [username]"
4166 #define su_full_usage "\n\n" \
4167        "Change user id or become root\n" \
4168      "\nOptions:" \
4169      "\n        -p, -m  Preserve environment" \
4170      "\n        -c CMD  Command to pass to 'sh -c'" \
4171      "\n        -s SH   Shell to use instead of default shell" \
4172
4173 #define sulogin_trivial_usage \
4174        "[OPTIONS] [TTY]"
4175 #define sulogin_full_usage "\n\n" \
4176        "Single user login\n" \
4177      "\nOptions:" \
4178      "\n        -t N    Timeout" \
4179
4180 #define sum_trivial_usage \
4181        "[-rs] [FILE]..."
4182 #define sum_full_usage "\n\n" \
4183        "Checksum and count the blocks in a file\n" \
4184      "\nOptions:" \
4185      "\n        -r      Use BSD sum algorithm (1K blocks)" \
4186      "\n        -s      Use System V sum algorithm (512byte blocks)" \
4187
4188 #define sv_trivial_usage \
4189        "[-v] [-w sec] command service..."
4190 #define sv_full_usage "\n\n" \
4191        "Control services monitored by runsv supervisor.\n" \
4192        "Commands (only first character is enough):\n" \
4193        "\n" \
4194        "status: query service status\n" \
4195        "up: if service isn't running, start it. If service stops, restart it\n" \
4196        "once: like 'up', but if service stops, don't restart it\n" \
4197        "down: send TERM and CONT signals. If ./run exits, start ./finish\n" \
4198        "        if it exists. After it stops, do not restart service\n" \
4199        "exit: send TERM and CONT signals to service and log service. If they exit,\n" \
4200        "        runsv exits too\n" \
4201        "pause, cont, hup, alarm, interrupt, quit, 1, 2, term, kill: send\n" \
4202        "STOP, CONT, HUP, ALRM, INT, QUIT, USR1, USR2, TERM, KILL signal to service" \
4203
4204 #define svlogd_trivial_usage \
4205        "[-ttv] [-r c] [-R abc] [-l len] [-b buflen] dir..."
4206 #define svlogd_full_usage "\n\n" \
4207        "Continuously read log data from standard input, optionally " \
4208        "filter log messages, and write the data to one or more automatically " \
4209        "rotated logs" \
4210
4211 #define swapoff_trivial_usage \
4212        "[-a] [DEVICE]"
4213 #define swapoff_full_usage "\n\n" \
4214        "Stop swapping on DEVICE\n" \
4215      "\nOptions:" \
4216      "\n        -a      Stop swapping on all swap devices" \
4217
4218 #define swapon_trivial_usage \
4219        "[-a]" IF_FEATURE_SWAPON_PRI(" [-p pri]") " [DEVICE]"
4220 #define swapon_full_usage "\n\n" \
4221        "Start swapping on DEVICE\n" \
4222      "\nOptions:" \
4223      "\n        -a      Start swapping on all swap devices" \
4224         IF_FEATURE_SWAPON_PRI( \
4225      "\n        -p pri  Set swap device priority" \
4226         ) \
4227
4228 #define switch_root_trivial_usage \
4229        "[-c /dev/console] NEW_ROOT NEW_INIT [ARGS]"
4230 #define switch_root_full_usage "\n\n" \
4231        "Free initramfs and switch to another root fs:\n" \
4232        "chroot to NEW_ROOT, delete all in /, move NEW_ROOT to /,\n" \
4233        "execute NEW_INIT. PID must be 1. NEW_ROOT must be a mountpoint.\n" \
4234      "\nOptions:" \
4235      "\n        -c DEV  Reopen stdio to DEV after switch" \
4236
4237 #define sync_trivial_usage \
4238        ""
4239 #define sync_full_usage "\n\n" \
4240        "Write all buffered blocks to disk"
4241
4242 #define fsync_trivial_usage \
4243        "[OPTIONS] FILE..."
4244 #define fsync_full_usage \
4245        "Write files' buffered blocks to disk\n" \
4246      "\nOptions:" \
4247      "\n        -d      Avoid syncing metadata"
4248
4249 #define sysctl_trivial_usage \
4250        "[OPTIONS] [VALUE]..."
4251 #define sysctl_full_usage "\n\n" \
4252        "Configure kernel parameters at runtime\n" \
4253      "\nOptions:" \
4254      "\n        -n      Don't print key names" \
4255      "\n        -e      Don't warn about unknown keys" \
4256      "\n        -w      Change sysctl setting" \
4257      "\n        -p FILE Load sysctl settings from FILE (default /etc/sysctl.conf)" \
4258      "\n        -a      Display all values" \
4259      "\n        -A      Display all values in table form" \
4260
4261 #define sysctl_example_usage \
4262        "sysctl [-n] [-e] variable...\n" \
4263        "sysctl [-n] [-e] -w variable=value...\n" \
4264        "sysctl [-n] [-e] -a\n" \
4265        "sysctl [-n] [-e] -p file        (default /etc/sysctl.conf)\n" \
4266        "sysctl [-n] [-e] -A\n"
4267
4268 #define syslogd_trivial_usage \
4269        "[OPTIONS]"
4270 #define syslogd_full_usage "\n\n" \
4271        "System logging utility.\n" \
4272        "Note that this version of syslogd ignores /etc/syslog.conf.\n" \
4273      "\nOptions:" \
4274      "\n        -n              Run in foreground" \
4275      "\n        -O FILE         Log to given file (default:/var/log/messages)" \
4276      "\n        -l n            Set local log level" \
4277      "\n        -S              Smaller logging output" \
4278         IF_FEATURE_ROTATE_LOGFILE( \
4279      "\n        -s SIZE         Max size (KB) before rotate (default:200KB, 0=off)" \
4280      "\n        -b NUM          Number of rotated logs to keep (default:1, max=99, 0=purge)") \
4281         IF_FEATURE_REMOTE_LOG( \
4282      "\n        -R HOST[:PORT]  Log to IP or hostname on PORT (default PORT=514/UDP)" \
4283      "\n        -L              Log locally and via network (default is network only if -R)") \
4284         IF_FEATURE_SYSLOGD_DUP( \
4285      "\n        -D              Drop duplicates") \
4286         IF_FEATURE_IPC_SYSLOG( \
4287      "\n        -C[size(KiB)]   Log to shared mem buffer (read it using logread)") \
4288         /* NB: -Csize shouldn't have space (because size is optional) */
4289 /*   "\n        -m MIN          Minutes between MARK lines (default:20, 0=off)" */
4290
4291 #define syslogd_example_usage \
4292        "$ syslogd -R masterlog:514\n" \
4293        "$ syslogd -R 192.168.1.1:601\n"
4294
4295 #define tac_trivial_usage \
4296         "[FILE]..."
4297 #define tac_full_usage "\n\n" \
4298         "Concatenate FILE(s) and print them in reverse"
4299
4300 #define tail_trivial_usage \
4301        "[OPTIONS] [FILE]..."
4302 #define tail_full_usage "\n\n" \
4303        "Print last 10 lines of each FILE to standard output.\n" \
4304        "With more than one FILE, precede each with a header giving the\n" \
4305        "file name. With no FILE, or when FILE is -, read standard input.\n" \
4306      "\nOptions:" \
4307         IF_FEATURE_FANCY_TAIL( \
4308      "\n        -c N[kbm]       Output the last N bytes") \
4309      "\n        -n N[kbm]       Print last N lines instead of last 10" \
4310      "\n        -f              Output data as the file grows" \
4311         IF_FEATURE_FANCY_TAIL( \
4312      "\n        -q              Never output headers giving file names" \
4313      "\n        -s SEC          Wait SEC seconds between reads with -f" \
4314      "\n        -v              Always output headers giving file names" \
4315      "\n" \
4316      "\nIf the first character of N (bytes or lines) is a '+', output begins with" \
4317      "\nthe Nth item from the start of each file, otherwise, print the last N items" \
4318      "\nin the file. N bytes may be suffixed by k (x1024), b (x512), or m (1024^2)." ) \
4319
4320 #define tail_example_usage \
4321        "$ tail -n 1 /etc/resolv.conf\n" \
4322        "nameserver 10.0.0.1\n"
4323
4324 #define tar_trivial_usage \
4325        "-[" IF_FEATURE_TAR_CREATE("c") IF_FEATURE_SEAMLESS_GZ("z") \
4326         IF_FEATURE_SEAMLESS_BZ2("j") IF_FEATURE_SEAMLESS_LZMA("a") \
4327         IF_FEATURE_SEAMLESS_Z("Z") "xtvO] " \
4328         IF_FEATURE_TAR_FROM("[-X FILE] ") \
4329        "[-f TARFILE] [-C DIR] [FILE(s)]..."
4330 #define tar_full_usage "\n\n" \
4331        "Create, extract, or list files from a tar file\n" \
4332      "\nOptions:" \
4333         IF_FEATURE_TAR_CREATE( \
4334      "\n        c       Create") \
4335      "\n        x       Extract" \
4336      "\n        t       List" \
4337      "\nArchive format selection:" \
4338         IF_FEATURE_SEAMLESS_GZ( \
4339      "\n        z       Filter the archive through gzip" \
4340         ) \
4341         IF_FEATURE_SEAMLESS_BZ2( \
4342      "\n        j       Filter the archive through bzip2" \
4343         ) \
4344         IF_FEATURE_SEAMLESS_LZMA( \
4345      "\n        a       Filter the archive through lzma" \
4346         ) \
4347         IF_FEATURE_SEAMLESS_Z( \
4348      "\n        Z       Filter the archive through compress" \
4349         ) \
4350      "\nFile selection:" \
4351      "\n        f       Name of TARFILE or \"-\" for stdin" \
4352      "\n        O       Extract to stdout" \
4353         IF_FEATURE_TAR_FROM( \
4354      "\n        exclude File to exclude" \
4355      "\n        X       File with names to exclude" \
4356         ) \
4357      "\n        C       Change to directory DIR before operation" \
4358      "\n        v       Verbose" \
4359
4360 #define tar_example_usage \
4361        "$ zcat /tmp/tarball.tar.gz | tar -xf -\n" \
4362        "$ tar -cf /tmp/tarball.tar /usr/local\n"
4363
4364 #define taskset_trivial_usage \
4365        "[-p] [MASK] [PID | PROG [ARGS]]"
4366 #define taskset_full_usage "\n\n" \
4367        "Set or get CPU affinity\n" \
4368      "\nOptions:" \
4369      "\n        -p      Operate on an existing PID" \
4370
4371 #define taskset_example_usage \
4372        "$ taskset 0x7 ./dgemm_test&\n" \
4373        "$ taskset -p 0x1 $!\n" \
4374        "pid 4790's current affinity mask: 7\n" \
4375        "pid 4790's new affinity mask: 1\n" \
4376        "$ taskset 0x7 /bin/sh -c './taskset -p 0x1 $$'\n" \
4377        "pid 6671's current affinity mask: 1\n" \
4378        "pid 6671's new affinity mask: 1\n" \
4379        "$ taskset -p 1\n" \
4380        "pid 1's current affinity mask: 3\n"
4381
4382 #define tee_trivial_usage \
4383        "[OPTIONS] [FILE]..."
4384 #define tee_full_usage "\n\n" \
4385        "Copy standard input to each FILE, and also to standard output\n" \
4386      "\nOptions:" \
4387      "\n        -a      Append to the given FILEs, do not overwrite" \
4388      "\n        -i      Ignore interrupt signals (SIGINT)" \
4389
4390 #define tee_example_usage \
4391        "$ echo \"Hello\" | tee /tmp/foo\n" \
4392        "$ cat /tmp/foo\n" \
4393        "Hello\n"
4394
4395 #if ENABLE_FEATURE_TELNET_AUTOLOGIN
4396 #define telnet_trivial_usage \
4397        "[-a] [-l USER] HOST [PORT]"
4398 #define telnet_full_usage "\n\n" \
4399        "Connect to telnet server\n" \
4400      "\nOptions:" \
4401      "\n        -a      Automatic login with $USER variable" \
4402      "\n        -l USER Automatic login as USER" \
4403
4404 #else
4405 #define telnet_trivial_usage \
4406        "HOST [PORT]"
4407 #define telnet_full_usage "\n\n" \
4408        "Connect to telnet server"
4409 #endif
4410
4411 #define telnetd_trivial_usage \
4412        "[OPTIONS]"
4413 #define telnetd_full_usage "\n\n" \
4414        "Handle incoming telnet connections" \
4415         IF_NOT_FEATURE_TELNETD_STANDALONE(" via inetd") "\n" \
4416      "\nOptions:" \
4417      "\n        -l LOGIN        Exec LOGIN on connect" \
4418      "\n        -f issue_file   Display issue_file instead of /etc/issue" \
4419      "\n        -K              Close connection as soon as login exits" \
4420      "\n                        (normally wait until all programs close slave pty)" \
4421         IF_FEATURE_TELNETD_STANDALONE( \
4422      "\n        -p PORT         Port to listen on" \
4423      "\n        -b ADDR         Address to bind to" \
4424      "\n        -F              Run in foreground" \
4425      "\n        -i              Run as inetd subservice" \
4426         )
4427
4428 /* "test --help" does not print help (POSIX compat), only "[ --help" does.
4429  * We display "<applet> EXPRESSION ]" here (not "<applet> EXPRESSION") */
4430 #define test_trivial_usage \
4431        "EXPRESSION ]"
4432 #define test_full_usage "\n\n" \
4433        "Check file types, compare values etc. Return a 0/1 exit code\n" \
4434        "depending on logical value of EXPRESSION"
4435 #define test_example_usage \
4436        "$ test 1 -eq 2\n" \
4437        "$ echo $?\n" \
4438        "1\n" \
4439        "$ test 1 -eq 1\n" \
4440        "$ echo $?\n" \
4441        "0\n" \
4442        "$ [ -d /etc ]\n" \
4443        "$ echo $?\n" \
4444        "0\n" \
4445        "$ [ -d /junk ]\n" \
4446        "$ echo $?\n" \
4447        "1\n"
4448
4449 #define tc_trivial_usage \
4450         /*"[OPTIONS] "*/"OBJECT CMD [dev STRING]"
4451 #define tc_full_usage "\n\n" \
4452         "OBJECT: {qdisc|class|filter}\n" \
4453         "CMD: {add|del|change|replace|show}\n" \
4454         "\n" \
4455         "qdisc [ handle QHANDLE ] [ root |"IF_FEATURE_TC_INGRESS(" ingress |")" parent CLASSID ]\n" \
4456         /* "[ estimator INTERVAL TIME_CONSTANT ]\n" */ \
4457         "       [ [ QDISC_KIND ] [ help | OPTIONS ] ]\n" \
4458         "       QDISC_KIND := { [p|b]fifo | tbf | prio | cbq | red | etc. }\n" \
4459         "qdisc show [ dev STRING ]"IF_FEATURE_TC_INGRESS(" [ingress]")"\n" \
4460         "class [ classid CLASSID ] [ root | parent CLASSID ]\n" \
4461         "       [ [ QDISC_KIND ] [ help | OPTIONS ] ]\n" \
4462         "class show [ dev STRING ] [ root | parent CLASSID ]\n" \
4463         "filter [ pref PRIO ] [ protocol PROTO ]\n" \
4464         /* "\t[ estimator INTERVAL TIME_CONSTANT ]\n" */ \
4465         "       [ root | classid CLASSID ] [ handle FILTERID ]\n" \
4466         "       [ [ FILTER_TYPE ] [ help | OPTIONS ] ]\n" \
4467         "filter show [ dev STRING ] [ root | parent CLASSID ]"
4468
4469 #define tcpsvd_trivial_usage \
4470        "[-hEv] [-c N] [-C N[:MSG]] [-b N] [-u USER] [-l NAME] IP PORT PROG"
4471 /* with not-implemented options: */
4472 /*     "[-hpEvv] [-c N] [-C N[:MSG]] [-b N] [-u USER] [-l NAME] [-i DIR|-x CDB] [-t SEC] IP PORT PROG" */
4473 #define tcpsvd_full_usage "\n\n" \
4474        "Create TCP socket, bind  to IP:PORT and listen\n" \
4475        "for incoming connection. Run PROG for each connection.\n" \
4476      "\nIP              IP to listen on. '0' = all" \
4477      "\nPORT            Port to listen on" \
4478      "\nPROG [ARGS]     Program to run" \
4479      "\n-l NAME         Local hostname (else looks up local hostname in DNS)" \
4480      "\n-u USER[:GROUP] Change to user/group after bind" \
4481      "\n-c N            Handle up to N connections simultaneously" \
4482      "\n-b N            Allow a backlog of approximately N TCP SYNs" \
4483      "\n-C N[:MSG]      Allow only up to N connections from the same IP" \
4484      "\n                New connections from this IP address are closed" \
4485      "\n                immediately. MSG is written to the peer before close" \
4486      "\n-h              Look up peer's hostname" \
4487      "\n-E              Do not set up environment variables" \
4488      "\n-v              Verbose" \
4489
4490 #define udpsvd_trivial_usage \
4491        "[-hEv] [-c N] [-u USER] [-l NAME] IP PORT PROG"
4492 #define udpsvd_full_usage "\n\n" \
4493        "Create UDP socket, bind to IP:PORT and wait\n" \
4494        "for incoming packets. Run PROG for each packet,\n" \
4495        "redirecting all further packets with same peer ip:port to it\n" \
4496      "\nIP              IP to listen on. '0' = all" \
4497      "\nPORT            Port to listen on" \
4498      "\nPROG [ARGS]     Program to run" \
4499      "\n-l NAME         Local hostname (else looks up local hostname in DNS)" \
4500      "\n-u USER[:GROUP] Change to user/group after bind" \
4501      "\n-c N            Handle up to N connections simultaneously" \
4502      "\n-h              Look up peer's hostname" \
4503      "\n-E              Do not set up environment variables" \
4504      "\n-v              Verbose" \
4505
4506 #define tftp_trivial_usage \
4507        "[OPTIONS] HOST [PORT]"
4508 #define tftp_full_usage "\n\n" \
4509        "Transfer a file from/to tftp server\n" \
4510      "\nOptions:" \
4511      "\n        -l FILE Local FILE" \
4512      "\n        -r FILE Remote FILE" \
4513         IF_FEATURE_TFTP_GET( \
4514      "\n        -g      Get file" \
4515         ) \
4516         IF_FEATURE_TFTP_PUT( \
4517      "\n        -p      Put file" \
4518         ) \
4519         IF_FEATURE_TFTP_BLOCKSIZE( \
4520      "\n        -b SIZE Transfer blocks of SIZE octets" \
4521         )
4522
4523 #define tftpd_trivial_usage \
4524        "[-cr] [-u USER] [DIR]"
4525 #define tftpd_full_usage "\n\n" \
4526        "Transfer a file on tftp client's request.\n" \
4527        "\n" \
4528        "tftpd should be used as an inetd service.\n" \
4529        "tftpd's line for inetd.conf:\n" \
4530        "        69 dgram udp nowait root tftpd tftpd /files/to/serve\n" \
4531        "It also can be ran from udpsvd:\n" \
4532        "        udpsvd -vE 0.0.0.0 69 tftpd /files/to/serve\n" \
4533      "\nOptions:" \
4534      "\n        -r      Prohibit upload" \
4535      "\n        -c      Allow file creation via upload" \
4536      "\n        -u      Access files as USER" \
4537
4538 #define time_trivial_usage \
4539        "[OPTIONS] PROG [ARGS]"
4540 #define time_full_usage "\n\n" \
4541        "Run PROG. When it finishes, its resource usage is displayed.\n" \
4542      "\nOptions:" \
4543      "\n        -v      Verbose" \
4544
4545 #define timeout_trivial_usage \
4546         "[-t SECS] [-s SIG] PROG [ARGS]"
4547 #define timeout_full_usage "\n\n" \
4548        "Runs PROG. Sends SIG to it if it is not gone in SECS seconds.\n" \
4549        "Defaults: SECS: 10, SIG: TERM." \
4550
4551 #define top_trivial_usage \
4552        "[-b] [-nCOUNT] [-dSECONDS]"
4553 #define top_full_usage "\n\n" \
4554        "Provide a view of process activity in real time.\n" \
4555        "Read the status of all processes from /proc each SECONDS\n" \
4556        "and show the status for however many processes will fit on the screen." \
4557
4558 #define touch_trivial_usage \
4559        "[-c] [-d DATE] FILE [FILE]..."
4560 #define touch_full_usage "\n\n" \
4561        "Update the last-modified date on the given FILE[s]\n" \
4562      "\nOptions:" \
4563      "\n        -c      Do not create files" \
4564      "\n        -d DT   Date/time to use" \
4565
4566 #define touch_example_usage \
4567        "$ ls -l /tmp/foo\n" \
4568        "/bin/ls: /tmp/foo: No such file or directory\n" \
4569        "$ touch /tmp/foo\n" \
4570        "$ ls -l /tmp/foo\n" \
4571        "-rw-rw-r--    1 andersen andersen        0 Apr 15 01:11 /tmp/foo\n"
4572
4573 #define tr_trivial_usage \
4574        "[-cds] STRING1 [STRING2]"
4575 #define tr_full_usage "\n\n" \
4576        "Translate, squeeze, and/or delete characters from\n" \
4577        "standard input, writing to standard output\n" \
4578      "\nOptions:" \
4579      "\n        -c      Take complement of STRING1" \
4580      "\n        -d      Delete input characters coded STRING1" \
4581      "\n        -s      Squeeze multiple output characters of STRING2 into one character" \
4582
4583 #define tr_example_usage \
4584        "$ echo \"gdkkn vnqkc\" | tr [a-y] [b-z]\n" \
4585        "hello world\n"
4586
4587 #define traceroute_trivial_usage \
4588        "[-FIldnrv] [-f 1st_ttl] [-m max_ttl] [-p port#] [-q nqueries]\n" \
4589        "        [-s src_addr] [-t tos] [-w wait] [-g gateway] [-i iface]\n" \
4590        "        [-z pausemsecs] HOST [data size]"
4591 #define traceroute_full_usage "\n\n" \
4592        "Trace the route to HOST\n" \
4593      "\nOptions:" \
4594      "\n        -F      Set the don't fragment bit" \
4595      "\n        -I      Use ICMP ECHO instead of UDP datagrams" \
4596      "\n        -l      Display the ttl value of the returned packet" \
4597      "\n        -d      Set SO_DEBUG options to socket" \
4598      "\n        -n      Print hop addresses numerically rather than symbolically" \
4599      "\n        -r      Bypass the normal routing tables and send directly to a host" \
4600      "\n        -v      Verbose" \
4601      "\n        -m max_ttl      Max time-to-live (max number of hops)" \
4602      "\n        -p port#        Base UDP port number used in probes" \
4603      "\n                        (default is 33434)" \
4604      "\n        -q nqueries     Number of probes per 'ttl' (default 3)" \
4605      "\n        -s src_addr     IP address to use as the source address" \
4606      "\n        -t tos          Type-of-service in probe packets (default 0)" \
4607      "\n        -w wait         Time in seconds to wait for a response" \
4608      "\n                        (default 3 sec)" \
4609      "\n        -g              Loose source route gateway (8 max)" \
4610
4611 #define true_trivial_usage \
4612        ""
4613 #define true_full_usage "\n\n" \
4614        "Return an exit code of TRUE (0)"
4615 #define true_example_usage \
4616        "$ true\n" \
4617        "$ echo $?\n" \
4618        "0\n"
4619
4620 #define tty_trivial_usage \
4621        ""
4622 #define tty_full_usage "\n\n" \
4623        "Print file name of standard input's terminal" \
4624         IF_INCLUDE_SUSv2( "\n" \
4625      "\nOptions:" \
4626      "\n        -s      Print nothing, only return exit status" \
4627         )
4628 #define tty_example_usage \
4629        "$ tty\n" \
4630        "/dev/tty2\n"
4631
4632 #define ttysize_trivial_usage \
4633        "[w] [h]"
4634 #define ttysize_full_usage "\n\n" \
4635        "Print dimension(s) of standard input's terminal, on error return 80x25"
4636
4637 #define tunctl_trivial_usage \
4638        "[-f device] ([-t name] | -d name)" IF_FEATURE_TUNCTL_UG(" [-u owner] [-g group] [-b]")
4639 #define tunctl_full_usage "\n\n" \
4640        "Create or delete tun interfaces" \
4641      "\nOptions:" \
4642      "\n        -f name         tun device (/dev/net/tun)" \
4643      "\n        -t name         Create iface 'name'" \
4644      "\n        -d name         Delete iface 'name'" \
4645 IF_FEATURE_TUNCTL_UG( \
4646      "\n        -u owner        Set iface owner" \
4647      "\n        -g group        Set iface group" \
4648      "\n        -b              Brief output" \
4649 )
4650 #define tunctl_example_usage \
4651        "# tunctl\n" \
4652        "# tunctl -d tun0\n"
4653
4654 #define tune2fs_trivial_usage \
4655        "[-c max-mounts-count] [-e errors-behavior] [-g group] " \
4656        "[-i interval[d|m|w]] [-j] [-J journal-options] [-l] [-s sparse-flag] " \
4657        "[-m reserved-blocks-percent] [-o [^]mount-options[,...]] " \
4658        "[-r reserved-blocks-count] [-u user] [-C mount-count] " \
4659        "[-L volume-label] [-M last-mounted-dir] [-O [^]feature[,...]] " \
4660        "[-T last-check-time] [-U UUID] device"
4661 #define tune2fs_full_usage "\n\n" \
4662        "Adjust filesystem options on ext[23] filesystems"
4663
4664 #define udhcpc_trivial_usage \
4665        "[-Cfbnqtvo] [-c CID] [-V VCLS] [-H HOSTNAME] [-i INTERFACE]\n" \
4666        "        [-p pidfile] [-r IP] [-s script] [-O dhcp-option]..." IF_FEATURE_UDHCP_PORT(" [-P N]")
4667 #define udhcpc_full_usage "\n\n" \
4668         IF_LONG_OPTS( \
4669        "        -V,--vendorclass=CLASSID        Vendor class identifier" \
4670      "\n        -i,--interface=INTERFACE        Interface to use (default eth0)" \
4671      "\n        -H,-h,--hostname=HOSTNAME       Client hostname" \
4672      "\n        -c,--clientid=CLIENTID  Client identifier" \
4673      "\n        -C,--clientid-none      Suppress default client identifier" \
4674      "\n        -p,--pidfile=file       Create pidfile" \
4675      "\n        -r,--request=IP         IP address to request" \
4676      "\n        -s,--script=file        Run file at DHCP events (default "CONFIG_UDHCPC_DEFAULT_SCRIPT")" \
4677      "\n        -t,--retries=N          Send up to N request packets" \
4678      "\n        -T,--timeout=N          Try to get a lease for N seconds (default 3)" \
4679      "\n        -A,--tryagain=N         Wait N seconds (default 20) after failure" \
4680      "\n        -O,--request-option=OPT Request DHCP option OPT (cumulative)" \
4681      "\n        -o,--no-default-options Do not request any options (unless -O is also given)" \
4682      "\n        -f,--foreground Run in foreground" \
4683         USE_FOR_MMU( \
4684      "\n        -b,--background Background if lease is not immediately obtained" \
4685         ) \
4686      "\n        -S,--syslog     Log to syslog too" \
4687      "\n        -n,--now        Exit with failure if lease is not immediately obtained" \
4688      "\n        -q,--quit       Quit after obtaining lease" \
4689      "\n        -R,--release    Release IP on quit" \
4690         IF_FEATURE_UDHCP_PORT( \
4691      "\n        -P,--client-port N  Use port N instead of default 68" \
4692         ) \
4693         IF_FEATURE_UDHCPC_ARPING( \
4694      "\n        -a,--arping     Use arping to validate offered address" \
4695         ) \
4696         ) \
4697         IF_NOT_LONG_OPTS( \
4698        "        -V CLASSID      Vendor class identifier" \
4699      "\n        -i INTERFACE    Interface to use (default: eth0)" \
4700      "\n        -H,-h HOSTNAME  Client hostname" \
4701      "\n        -c CLIENTID     Client identifier" \
4702      "\n        -C              Suppress default client identifier" \
4703      "\n        -p file         Create pidfile" \
4704      "\n        -r IP           IP address to request" \
4705      "\n        -s file         Run file at DHCP events (default "CONFIG_UDHCPC_DEFAULT_SCRIPT")" \
4706      "\n        -t N            Send up to N request packets" \
4707      "\n        -T N            Try to get a lease for N seconds (default 3)" \
4708      "\n        -A N            Wait N seconds (default 20) after failure" \
4709      "\n        -O OPT          Request DHCP option OPT (cumulative)" \
4710      "\n        -o              Do not request any options (unless -O is also given)" \
4711      "\n        -f              Run in foreground" \
4712         USE_FOR_MMU( \
4713      "\n        -b              Background if lease is not immediately obtained" \
4714         ) \
4715      "\n        -S              Log to syslog too" \
4716      "\n        -n              Exit with failure if lease is not immediately obtained" \
4717      "\n        -q              Quit after obtaining lease" \
4718      "\n        -R              Release IP on quit" \
4719         IF_FEATURE_UDHCP_PORT( \
4720      "\n        -P N            Use port N instead of default 68" \
4721         ) \
4722         IF_FEATURE_UDHCPC_ARPING( \
4723      "\n        -a              Use arping to validate offered address" \
4724         ) \
4725         )
4726
4727 #define udhcpd_trivial_usage \
4728        "[-fS]" IF_FEATURE_UDHCP_PORT(" [-P N]") " [configfile]" \
4729
4730 #define udhcpd_full_usage "\n\n" \
4731        "DHCP server\n" \
4732      "\n        -f      Run in foreground" \
4733      "\n        -S      Log to syslog too" \
4734         IF_FEATURE_UDHCP_PORT( \
4735      "\n        -P N    Use port N instead of default 67" \
4736         )
4737
4738 #define umount_trivial_usage \
4739        "[flags] FILESYSTEM|DIRECTORY"
4740 #define umount_full_usage "\n\n" \
4741        "Unmount file systems\n" \
4742      "\nOptions:" \
4743         IF_FEATURE_UMOUNT_ALL( \
4744      "\n        -a      Unmount all file systems" IF_FEATURE_MTAB_SUPPORT(" in /etc/mtab") \
4745         ) \
4746         IF_FEATURE_MTAB_SUPPORT( \
4747      "\n        -n      Don't erase /etc/mtab entries" \
4748         ) \
4749      "\n        -r      Try to remount devices as read-only if mount is busy" \
4750      "\n        -l      Lazy umount (detach filesystem)" \
4751      "\n        -f      Force umount (i.e., unreachable NFS server)" \
4752         IF_FEATURE_MOUNT_LOOP( \
4753      "\n        -d      Free loop device if it has been used" \
4754         )
4755
4756 #define umount_example_usage \
4757        "$ umount /dev/hdc1\n"
4758
4759 #define uname_trivial_usage \
4760        "[-amnrspv]"
4761 #define uname_full_usage "\n\n" \
4762        "Print system information.\n" \
4763      "\nOptions:" \
4764      "\n        -a      Print all" \
4765      "\n        -m      The machine (hardware) type" \
4766      "\n        -n      Hostname" \
4767      "\n        -r      OS release" \
4768      "\n        -s      OS name (default)" \
4769      "\n        -p      Processor type" \
4770      "\n        -v      OS version" \
4771
4772 #define uname_example_usage \
4773        "$ uname -a\n" \
4774        "Linux debian 2.4.23 #2 Tue Dec 23 17:09:10 MST 2003 i686 GNU/Linux\n"
4775
4776 #define uncompress_trivial_usage \
4777        "[-c] [-f] [name...]"
4778 #define uncompress_full_usage "\n\n" \
4779        "Uncompress .Z file[s]\n" \
4780      "\nOptions:" \
4781      "\n        -c      Extract to stdout" \
4782      "\n        -f      Overwrite an existing file" \
4783
4784 #define unexpand_trivial_usage \
4785        "[-f][-a][-t NUM] [FILE|-]"
4786 #define unexpand_full_usage "\n\n" \
4787        "Convert spaces to tabs, writing to standard output.\n" \
4788      "\nOptions:" \
4789         IF_FEATURE_UNEXPAND_LONG_OPTIONS( \
4790      "\n        -a,--all        Convert all blanks" \
4791      "\n        -f,--first-only Convert only leading blanks" \
4792      "\n        -t,--tabs=N     Tabstops every N chars" \
4793         ) \
4794         IF_NOT_FEATURE_UNEXPAND_LONG_OPTIONS( \
4795      "\n        -a      Convert all blanks" \
4796      "\n        -f      Convert only leading blanks" \
4797      "\n        -t N    Tabstops every N chars" \
4798         )
4799
4800 #define uniq_trivial_usage \
4801        "[-fscduw]... [INPUT [OUTPUT]]"
4802 #define uniq_full_usage "\n\n" \
4803        "Discard duplicate lines\n" \
4804      "\nOptions:" \
4805      "\n        -c      Prefix lines by the number of occurrences" \
4806      "\n        -d      Only print duplicate lines" \
4807      "\n        -u      Only print unique lines" \
4808      "\n        -f N    Skip first N fields" \
4809      "\n        -s N    Skip first N chars (after any skipped fields)" \
4810      "\n        -w N    Compare N characters in line" \
4811
4812 #define uniq_example_usage \
4813        "$ echo -e \"a\\na\\nb\\nc\\nc\\na\" | sort | uniq\n" \
4814        "a\n" \
4815        "b\n" \
4816        "c\n"
4817
4818 #define unzip_trivial_usage \
4819        "[-opts[modifiers]] file[.zip] [list] [-x xlist] [-d exdir]"
4820 #define unzip_full_usage "\n\n" \
4821        "Extract files from ZIP archives\n" \
4822      "\nOptions:" \
4823      "\n        -l      List archive contents (with -q for short form)" \
4824      "\n        -n      Never overwrite existing files (default)" \
4825      "\n        -o      Overwrite files without prompting" \
4826      "\n        -p      Send output to stdout" \
4827      "\n        -q      Quiet" \
4828      "\n        -x      Exclude these files" \
4829      "\n        -d      Extract files into this directory" \
4830
4831 #define uptime_trivial_usage \
4832        ""
4833 #define uptime_full_usage "\n\n" \
4834        "Display the time since the last boot"
4835
4836 #define uptime_example_usage \
4837        "$ uptime\n" \
4838        "  1:55pm  up  2:30, load average: 0.09, 0.04, 0.00\n"
4839
4840 #define usleep_trivial_usage \
4841        "N"
4842 #define usleep_full_usage "\n\n" \
4843        "Pause for N microseconds"
4844
4845 #define usleep_example_usage \
4846        "$ usleep 1000000\n" \
4847        "[pauses for 1 second]\n"
4848
4849 #define uudecode_trivial_usage \
4850        "[-o outfile] [infile]"
4851 #define uudecode_full_usage "\n\n" \
4852        "Uudecode a file\n" \
4853        "Finds outfile name in uuencoded source unless -o is given"
4854
4855 #define uudecode_example_usage \
4856        "$ uudecode -o busybox busybox.uu\n" \
4857        "$ ls -l busybox\n" \
4858        "-rwxr-xr-x   1 ams      ams        245264 Jun  7 21:35 busybox\n"
4859
4860 #define uuencode_trivial_usage \
4861        "[-m] [infile] stored_filename"
4862 #define uuencode_full_usage "\n\n" \
4863        "Uuencode a file to stdout\n" \
4864      "\nOptions:" \
4865      "\n        -m      Use base64 encoding per RFC1521" \
4866
4867 #define uuencode_example_usage \
4868        "$ uuencode busybox busybox\n" \
4869        "begin 755 busybox\n" \
4870        "<encoded file snipped>\n" \
4871        "$ uudecode busybox busybox > busybox.uu\n" \
4872        "$\n"
4873
4874 #define vconfig_trivial_usage \
4875        "COMMAND [OPTIONS]"
4876 #define vconfig_full_usage "\n\n" \
4877        "Create and remove virtual ethernet devices\n" \
4878      "\nOptions:" \
4879      "\n        add             [interface-name] [vlan_id]" \
4880      "\n        rem             [vlan-name]" \
4881      "\n        set_flag        [interface-name] [flag-num] [0 | 1]" \
4882      "\n        set_egress_map  [vlan-name] [skb_priority] [vlan_qos]" \
4883      "\n        set_ingress_map [vlan-name] [skb_priority] [vlan_qos]" \
4884      "\n        set_name_type   [name-type]" \
4885
4886 #define vi_trivial_usage \
4887        "[OPTIONS] [FILE]..."
4888 #define vi_full_usage "\n\n" \
4889        "Edit FILE\n" \
4890      "\nOptions:" \
4891         IF_FEATURE_VI_COLON( \
4892      "\n        -c      Initial command to run ($EXINIT also available)") \
4893         IF_FEATURE_VI_READONLY( \
4894      "\n        -R      Read-only - do not write to the file") \
4895      "\n        -H      Short help regarding available features" \
4896
4897 #define vlock_trivial_usage \
4898        "[OPTIONS]"
4899 #define vlock_full_usage "\n\n" \
4900        "Lock a virtual terminal. A password is required to unlock.\n" \
4901      "\nOptions:" \
4902      "\n        -a      Lock all VTs" \
4903
4904 #define volname_trivial_usage \
4905        "[DEVICE]"
4906 #define volname_full_usage "\n\n" \
4907        "Show CD volume name of the DEVICE (default /dev/cdrom)"
4908
4909 #define watch_trivial_usage \
4910        "[-n seconds] [-t] PROG [ARGS]"
4911 #define watch_full_usage "\n\n" \
4912        "Run PROG periodically\n" \
4913      "\nOptions:" \
4914      "\n        -n      Loop period in seconds (default 2)" \
4915      "\n        -t      Don't print header" \
4916
4917 #define watch_example_usage \
4918        "$ watch date\n" \
4919        "Mon Dec 17 10:31:40 GMT 2000\n" \
4920        "Mon Dec 17 10:31:42 GMT 2000\n" \
4921        "Mon Dec 17 10:31:44 GMT 2000"
4922
4923 #define watchdog_trivial_usage \
4924        "[-t N[ms]] [-T N[ms]] [-F] DEV"
4925 #define watchdog_full_usage "\n\n" \
4926        "Periodically write to watchdog device DEV\n" \
4927      "\nOptions:" \
4928      "\n        -T N    Reboot after N seconds if not reset (default 60)" \
4929      "\n        -t N    Reset every N seconds (default 30)" \
4930      "\n        -F      Run in foreground" \
4931      "\n" \
4932      "\nUse 500ms to specify period in milliseconds" \
4933
4934 #define wc_trivial_usage \
4935        "[OPTIONS] [FILE]..."
4936 #define wc_full_usage "\n\n" \
4937        "Print line, word, and byte counts for each FILE, and a total line if\n" \
4938        "more than one FILE is specified. With no FILE, read standard input.\n" \
4939      "\nOptions:" \
4940      "\n        -c      Print the byte counts" \
4941      "\n        -l      Print the newline counts" \
4942      "\n        -L      Print the length of the longest line" \
4943      "\n        -w      Print the word counts" \
4944
4945 #define wc_example_usage \
4946        "$ wc /etc/passwd\n" \
4947        "     31      46    1365 /etc/passwd\n"
4948
4949 #define wget_trivial_usage \
4950         IF_FEATURE_WGET_LONG_OPTIONS( \
4951        "[-c|--continue] [-s|--spider] [-q|--quiet] [-O|--output-document file]\n" \
4952        "        [--header 'header: value'] [-Y|--proxy on/off] [-P DIR]\n" \
4953        "        [-U|--user-agent agent] url" \
4954         ) \
4955         IF_NOT_FEATURE_WGET_LONG_OPTIONS( \
4956        "[-csq] [-O file] [-Y on/off] [-P DIR] [-U agent] url" \
4957         )
4958 #define wget_full_usage "\n\n" \
4959        "Retrieve files via HTTP or FTP\n" \
4960      "\nOptions:" \
4961      "\n        -s      Spider mode - only check file existence" \
4962      "\n        -c      Continue retrieval of aborted transfer" \
4963      "\n        -q      Quiet" \
4964      "\n        -P      Set directory prefix to DIR" \
4965      "\n        -O      Save to filename ('-' for stdout)" \
4966      "\n        -U      Adjust 'User-Agent' field" \
4967      "\n        -Y      Use proxy ('on' or 'off')" \
4968
4969 #define which_trivial_usage \
4970        "[COMMAND]..."
4971 #define which_full_usage "\n\n" \
4972        "Locate a COMMAND"
4973 #define which_example_usage \
4974        "$ which login\n" \
4975        "/bin/login\n"
4976
4977 #define who_trivial_usage \
4978        "[-a]"
4979 #define who_full_usage "\n\n" \
4980        "Show who is logged on\n" \
4981      "\nOptions:" \
4982      "\n        -a      show all" \
4983
4984 #define whoami_trivial_usage \
4985        ""
4986 #define whoami_full_usage "\n\n" \
4987        "Print the user name associated with the current effective user id"
4988
4989 #define xargs_trivial_usage \
4990        "[OPTIONS] [PROG [ARGS]]"
4991 #define xargs_full_usage "\n\n" \
4992        "Run PROG on every item given by standard input\n" \
4993      "\nOptions:" \
4994         IF_FEATURE_XARGS_SUPPORT_CONFIRMATION( \
4995      "\n        -p      Ask user whether to run each command") \
4996      "\n        -r      Do not run command if input is empty" \
4997         IF_FEATURE_XARGS_SUPPORT_ZERO_TERM( \
4998      "\n        -0      Input is separated by NUL characters") \
4999      "\n        -t      Print the command on stderr before execution" \
5000      "\n        -e[STR] STR stops input processing" \
5001      "\n        -n N    Pass no more than N args to PROG" \
5002      "\n        -s N    Pass command line of no more than N bytes" \
5003         IF_FEATURE_XARGS_SUPPORT_TERMOPT( \
5004      "\n        -x      Exit if size is exceeded") \
5005
5006 #define xargs_example_usage \
5007        "$ ls | xargs gzip\n" \
5008        "$ find . -name '*.c' -print | xargs rm\n"
5009
5010 #define yes_trivial_usage \
5011        "[OPTIONS] [STRING]"
5012 #define yes_full_usage "\n\n" \
5013        "Repeatedly output a line with STRING, or 'y'"
5014
5015 #define zcat_trivial_usage \
5016        "FILE"
5017 #define zcat_full_usage "\n\n" \
5018        "Uncompress to stdout"
5019
5020 #define zcip_trivial_usage \
5021        "[OPTIONS] IFACE SCRIPT"
5022 #define zcip_full_usage "\n\n" \
5023        "Manage a ZeroConf IPv4 link-local address\n" \
5024      "\nOptions:" \
5025      "\n        -f              Run in foreground" \
5026      "\n        -q              Quit after obtaining address" \
5027      "\n        -r 169.254.x.x  Request this address first" \
5028      "\n        -v              Verbose" \
5029      "\n" \
5030      "\nWith no -q, runs continuously monitoring for ARP conflicts," \
5031      "\nexits only on I/O errors (link down etc)" \
5032
5033
5034 #endif