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