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