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