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