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