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