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