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