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