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