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