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