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