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