Patch from Steven Scholz:
[oweals/busybox.git] / include / usage.h
1 #define addgroup_trivial_usage \
2         "[OPTIONS] group_name [user_name]"
3 #define addgroup_full_usage \
4         "Adds a group to the system" \
5         "Options:\n" \
6             "\t-g\t\tspecify gid\n"
7
8 #define adduser_trivial_usage \
9         "[OPTIONS] user_name"
10 #define adduser_full_usage \
11         "Adds a user to the system" \
12         "Options:\n" \
13             "\t-h DIR\t\tAssign home directory DIR\n" \
14             "\t-g GECOS\t\tAssign gecos field GECOS\n" \
15             "\t-s SHELL\t\tAssign login shell SHELL\n" \
16             "\t-G\t\tAdd the user to existing group GROUP\n" \
17             "\t-S\t\tcreate a system user (ignored)\n" \
18             "\t-D\t\tDo not assign a password (logins still possible via ssh)\n" \
19             "\t-H\t\tDo not create the home directory\n"
20
21 #define adjtimex_trivial_usage \
22         "[-q] [-o offset] [-f frequency] [-p timeconstant] [-t tick]"
23 #define adjtimex_full_usage \
24         "Reads and optionally sets system timebase parameters.\n" \
25         "See adjtimex(2).\n\n" \
26         "Options:\n" \
27         "\t-q\t\tquiet mode - do not print\n" \
28         "\t-o offset\ttime offset, microseconds\n" \
29         "\t-f frequency\tfrequency adjust, integer kernel units (65536 is 1ppm)\n" \
30         "\t\t\t(positive values make the system clock run fast)\n" \
31         "\t-t tick\t\tmicroseconds per tick, usually 10000\n" \
32         "\t-p timeconstant\n"
33
34 #define ar_trivial_usage \
35         "-[ov][ptx] ARCHIVE FILES"
36 #define ar_full_usage \
37         "Extract or list FILES from an ar archive.\n\n" \
38         "Options:\n" \
39         "\t-o\t\tpreserve original dates\n" \
40         "\t-p\t\textract to stdout\n" \
41         "\t-t\t\tlist\n" \
42         "\t-x\t\textract\n" \
43         "\t-v\t\tverbosely list files processed\n"
44
45 #define arping_trivial_usage \
46         "[-fqbDUA] [-c count] [-w timeout] [-I device] [-s sender] target\n"
47 #define arping_full_usage \
48         "Ping hosts by ARP requests/replies.\n\n" \
49         "Options:\n" \
50         "\t-f\t\tQuit on first ARP reply\n" \
51         "\t-q\t\tBe quiet\n" \
52         "\t-b\t\tKeep broadcasting, don't go unicast\n" \
53         "\t-D\t\tDuplicated address detection mode\n" \
54         "\t-U\t\tUnsolicited ARP mode, update your neighbours\n" \
55         "\t-A\t\tARP answer mode, update your neighbours\n" \
56         "\t-c count\tStop after sending count ARP request packets\n" \
57         "\t-w timeout\tTime to wait for ARP reply, in seconds\n" \
58         "\t-I device\tOutgoing interface name, default is eth0\n" \
59         "\t-s sender\tSet specific sender IP address\n" \
60         "\ttarget\t\tTarget IP address of ARP request\n"
61
62 #define awk_trivial_usage \
63         "[-v var=val][-F sep] { -f progname | 'programtext' } [FILE ...]"
64 #define awk_full_usage \
65         "Options:\n" \
66         "\t-v var=val\tassign value 'val' to variable 'var'\n" \
67         "\t-F sep\t\tuse 'sep' as field separator\n" \
68         "\t-f progname\tread program source from file 'progname'\n"
69
70 #define basename_trivial_usage \
71         "FILE [SUFFIX]"
72 #define basename_full_usage \
73         "Strips directory path and suffixes from FILE.\n" \
74         "If specified, also removes any trailing SUFFIX."
75 #define basename_example_usage \
76         "$ basename /usr/local/bin/foo\n" \
77         "foo\n" \
78         "$ basename /usr/local/bin/\n" \
79         "bin\n" \
80         "$ basename /foo/bar.txt .txt\n" \
81         "bar"
82
83 #define bunzip2_trivial_usage \
84         "[OPTION]... [FILE]"
85 #define bunzip2_full_usage \
86         "Uncompress FILE (or standard input if FILE is '-' or omitted).\n\n" \
87         "Options:\n" \
88         "\t-c\tWrite output to standard output\n" \
89         "\t-f\tForce"
90
91 #define bzcat_trivial_usage \
92         "FILE"
93 #define bzcat_full_usage \
94         "Uncompress to stdout."
95
96 #define cal_trivial_usage \
97        "[-jy] [[month] year]"
98 #define cal_full_usage \
99        "Display a calendar.\n" \
100        "\nOptions:\n" \
101        "\t-j\tUse julian dates.\n" \
102        "\t-y\tDisplay the entire year."
103
104 #define cat_trivial_usage \
105         "[-u] [FILE]..."
106 #define cat_full_usage \
107         "Concatenates FILE(s) and prints them to stdout.\n\n" \
108         "Options:\n" \
109         "\t-u\tignored since unbuffered i/o is always used"
110 #define cat_example_usage \
111         "$ cat /proc/uptime\n" \
112         "110716.72 17.67"
113
114 #define chgrp_trivial_usage \
115         "[OPTION]... GROUP FILE..."
116 #define chgrp_full_usage \
117         "Change the group membership of each FILE to GROUP.\n" \
118         "\nOptions:\n" \
119         "\t-R\tChanges files and directories recursively."
120 #define chgrp_example_usage \
121         "$ ls -l /tmp/foo\n" \
122         "-r--r--r--    1 andersen andersen        0 Apr 12 18:25 /tmp/foo\n" \
123         "$ chgrp root /tmp/foo\n" \
124         "$ ls -l /tmp/foo\n" \
125         "-r--r--r--    1 andersen root            0 Apr 12 18:25 /tmp/foo\n"
126
127 #define chmod_trivial_usage \
128         "[-R] MODE[,MODE]... FILE..."
129 #define chmod_full_usage \
130         "Each MODE is one or more of the letters ugoa, one of the\n" \
131         "symbols +-= and one or more of the letters rwxst.\n\n" \
132         "Options:\n" \
133         "\t-R\tChanges files and directories recursively."
134 #define chmod_example_usage \
135         "$ ls -l /tmp/foo\n" \
136         "-rw-rw-r--    1 root     root            0 Apr 12 18:25 /tmp/foo\n" \
137         "$ chmod u+x /tmp/foo\n" \
138         "$ ls -l /tmp/foo\n" \
139         "-rwxrw-r--    1 root     root            0 Apr 12 18:25 /tmp/foo*\n" \
140         "$ chmod 444 /tmp/foo\n" \
141         "$ ls -l /tmp/foo\n" \
142         "-r--r--r--    1 root     root            0 Apr 12 18:25 /tmp/foo\n"
143
144 #define chown_trivial_usage \
145         "[ -Rh ]...  OWNER[<.|:>[GROUP]] FILE..."
146 #define chown_full_usage \
147         "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" \
148         "\nOptions:\n" \
149         "\t-R\tChanges files and directories recursively.\n" \
150         "\t-h\tDo not dereference symbolic links."
151 #define chown_example_usage \
152         "$ ls -l /tmp/foo\n" \
153         "-r--r--r--    1 andersen andersen        0 Apr 12 18:25 /tmp/foo\n" \
154         "$ chown root /tmp/foo\n" \
155         "$ ls -l /tmp/foo\n" \
156         "-r--r--r--    1 root     andersen        0 Apr 12 18:25 /tmp/foo\n" \
157         "$ chown root.root /tmp/foo\n" \
158         "ls -l /tmp/foo\n" \
159         "-r--r--r--    1 root     root            0 Apr 12 18:25 /tmp/foo\n"
160
161 #define chroot_trivial_usage \
162         "NEWROOT [COMMAND...]"
163 #define chroot_full_usage \
164         "Run COMMAND with root directory set to NEWROOT."
165 #define chroot_example_usage \
166         "$ ls -l /bin/ls\n" \
167         "lrwxrwxrwx    1 root     root          12 Apr 13 00:46 /bin/ls -> /BusyBox\n" \
168         "$ mount /dev/hdc1 /mnt -t minix\n" \
169         "$ chroot /mnt\n" \
170         "$ ls -l /bin/ls\n" \
171         "-rwxr-xr-x    1 root     root        40816 Feb  5 07:45 /bin/ls*\n"
172
173 #define chvt_trivial_usage \
174         "N"
175 #define chvt_full_usage \
176         "Changes the foreground virtual terminal to /dev/ttyN"
177
178 #define clear_trivial_usage \
179         ""
180 #define clear_full_usage \
181         "Clear screen."
182
183 #define cmp_trivial_usage \
184         "[OPTION]... FILE1 [FILE2]"
185 #define cmp_full_usage \
186         "Compare files.\n\n" \
187         "Options:\n" \
188         "\t-l\tWrite the byte numbers (decimal) and values (octal)\n" \
189         "\t\t  for all differing bytes.\n" \
190         "\t-s\tquiet mode - do not print"
191
192 #define cp_trivial_usage \
193         "[OPTION]... SOURCE DEST"
194 #define cp_full_usage \
195         "Copies SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n" \
196         "\n" \
197         "\t-a\tSame as -dpR\n" \
198         "\t-d\tPreserves links\n" \
199         "\t-p\tPreserves file attributes if possible\n" \
200         "\t-f\tforce (implied; ignored) - always set\n" \
201         "\t-R\tCopies directories recursively"
202
203 #define cpio_trivial_usage \
204         "-[dimtuv][F cpiofile]"
205 #define cpio_full_usage \
206         "Extract or list files from a cpio archive\n" \
207         "Main operation mode:\n" \
208         "\td\t\tmake leading directories\n" \
209         "\ti\t\textract\n" \
210         "\tm\t\tpreserve mtime\n" \
211         "\tt\t\tlist\n" \
212         "\tu\t\tunconditional overwrite\n" \
213         "\tF\t\tinput from file"
214         
215 #define crond_trivial_usage \
216         "-d[#] -c <crondir> -f -b"
217 #define crond_full_usage \
218         "\t-d [#] -l [#] -S -L logfile -f -b -c dir\n" \
219         "\t-d num\tdebug level\n" \
220         "\t-l num\tlog level (8 - default)\n" \
221         "\t-S\tlog to syslod (defualt)\n" \
222         "\t-L file\tlog to file\n" \
223         "\t-f\trun in fordeground\n" \
224         "\t-b\trun in background (default)\n" \
225         "\t-c dir\tworking dir"
226
227 #define crontab_trivial_usage \
228         "crontab [-c dir] {file|-}|[-u|-l|-e|-d user]"
229 #define crontab_full_usage \
230         "\tfile <opts>  replace crontab from file\n" \
231         "\t-    <opts>  replace crontab from stdin\n" \
232         "\t-u user      specify user\n" \
233         "\t-l [user]    list crontab for user\n" \
234         "\t-e [user]    edit crontab for user\n" \
235         "\t-d [user]    delete crontab for user\n" \
236         "\t-c dir       specify crontab directory"
237
238
239 #define cut_trivial_usage \
240         "[OPTION]... [FILE]..."
241 #define cut_full_usage \
242         "Prints selected fields from each input FILE to standard output.\n\n" \
243         "Options:\n" \
244         "\t-b LIST\t\tOutput only bytes from LIST\n" \
245         "\t-c LIST\t\tOutput only characters from LIST\n" \
246         "\t-d CHAR\t\tUse CHAR instead of tab as the field delimiter\n" \
247         "\t-s\t\tOutput only the lines containing delimiter\n" \
248         "\t-f N\t\tPrint only these fields\n" \
249         "\t-n\t\tIgnored"
250 #define cut_example_usage \
251         "$ echo "Hello world" | cut -f 1 -d ' '\n" \
252         "Hello\n" \
253         "$ echo "Hello world" | cut -f 2 -d ' '\n" \
254         "world\n"
255
256 #define date_trivial_usage \
257         "[OPTION]... [+FORMAT]"
258 #define date_full_usage \
259         "Displays the current time in the given FORMAT, or sets the system date.\n" \
260         "\nOptions:\n" \
261         "\t-R\t\tOutputs RFC-822 compliant date string\n" \
262         "\t-d STRING\tdisplay time described by STRING, not `now'\n" \
263         "\t-s\t\tSets time described by STRING\n" \
264         "\t-u\t\tPrints or sets Coordinated Universal Time"
265 #define date_example_usage \
266         "$ date\n" \
267         "Wed Apr 12 18:52:41 MDT 2000\n"
268
269 #define dc_trivial_usage \
270         "expression ..."
271 #define dc_full_usage \
272         "This is a Tiny RPN calculator that understands the\n" \
273         "following operations: +, -, /, *, and, or, not, eor.\n" \
274         "i.e., 'dc 2 2 add' -> 4, and 'dc 8 8 \\* 2 2 + /' -> 16" \
275         "p - Prints the value on the top of the stack, without altering the stack.\n" \
276         "f - Prints the entire contents of the stack without altering anything.\n" \
277         "o - Pops the value off the top of the stack and uses it to set the output radix.\n" \
278         "    Only 10 and 16 are supported.\n"
279
280 #define dc_example_usage \
281         "$ dc 2 2 +\n" \
282         "4\n" \
283         "$ dc 8 8 * 2 2 + /\n" \
284         "16\n" \
285         "$ dc 0 1 and\n" \
286         "0\n" \
287         "$ dc 0 1 or\n" \
288         "1\n" \
289         "$ echo 72 9 div 8 mul | dc\n" \
290         "64\n"
291
292 #define dd_trivial_usage \
293         "[if=FILE] [of=FILE] [bs=N] [count=N] [skip=N]\n" \
294         "\t  [seek=N] [conv=notrunc|noerror|sync]"
295 #define dd_full_usage \
296         "Copy a file, converting and formatting according to options\n\n" \
297         "\tif=FILE\t\tread from FILE instead of stdin\n" \
298         "\tof=FILE\t\twrite to FILE instead of stdout\n" \
299         "\tbs=N\t\tread and write N bytes at a time\n" \
300         "\tcount=N\t\tcopy only N input blocks\n" \
301         "\tskip=N\t\tskip N input blocks\n" \
302         "\tseek=N\t\tskip N output blocks\n" \
303         "\tconv=notrunc\tdon't truncate output file\n" \
304         "\tconv=noerror\tcontinue after read errors\n" \
305         "\tconv=sync\tpad blocks with zeros\n" \
306         "\n" \
307         "Numbers may be suffixed by c (x1), w (x2), b (x512), kD (x1000), k (x1024),\n" \
308         "MD (x1000000), M (x1048576), GD (x1000000000) or G (x1073741824)."
309 #define dd_example_usage \
310         "$ dd if=/dev/zero of=/dev/ram1 bs=1M count=4\n" \
311         "4+0 records in\n" \
312         "4+0 records out\n"
313
314 #define deallocvt_trivial_usage \
315         "N"
316 #define deallocvt_full_usage \
317          "Deallocate unused virtual terminal /dev/ttyN"
318
319 #define delgroup_trivial_usage \
320         "GROUP"
321 #define delgroup_full_usage \
322          "Deletes group GROUP from the system"
323
324 #define deluser_trivial_usage \
325         "USER"
326 #define deluser_full_usage \
327          "Deletes user USER from the system"
328
329 #ifdef CONFIG_FEATURE_HUMAN_READABLE
330   #define USAGE_HUMAN_READABLE(a) a
331   #define USAGE_NOT_HUMAN_READABLE(a)
332 #else
333   #define USAGE_HUMAN_READABLE(a) 
334   #define USAGE_NOT_HUMAN_READABLE(a) a
335 #endif
336 #define df_trivial_usage \
337         "[-" USAGE_HUMAN_READABLE("hm") USAGE_NOT_HUMAN_READABLE("") "k] [FILESYSTEM ...]"
338 #define df_full_usage \
339         "Print the filesystem space used and space available.\n\n" \
340         "Options:\n" \
341         USAGE_HUMAN_READABLE( \
342         "\n\t-h\tprint sizes in human readable format (e.g., 1K 243M 2G )\n" \
343         "\t-m\tprint sizes in megabytes\n" \
344         "\t-k\tprint sizes in kilobytes(default)") USAGE_NOT_HUMAN_READABLE( \
345         "\n\t-k\tprint sizes in kilobytes(compatibility)")
346 #define df_example_usage \
347         "$ df\n" \
348         "Filesystem           1k-blocks      Used Available Use% Mounted on\n" \
349         "/dev/sda3              8690864   8553540    137324  98% /\n" \
350         "/dev/sda1                64216     36364     27852  57% /boot\n" \
351         "$ df /dev/sda3\n" \
352         "Filesystem           1k-blocks      Used Available Use% Mounted on\n" \
353         "/dev/sda3              8690864   8553540    137324  98% /\n"
354
355 #define dirname_trivial_usage \
356         "[FILENAME ...]"
357 #define dirname_full_usage \
358         "Strips non-directory suffix from FILENAME"
359 #define dirname_example_usage \
360         "$ dirname /tmp/foo\n" \
361         "/tmp\n" \
362         "$ dirname /tmp/foo/\n" \
363         "/tmp\n"
364
365 #define dmesg_trivial_usage \
366         "[-c] [-n LEVEL] [-s SIZE]"
367 #define dmesg_full_usage \
368         "Prints or controls the kernel ring buffer\n\n" \
369         "Options:\n" \
370         "\t-c\t\tClears the ring buffer's contents after printing\n" \
371         "\t-n LEVEL\tSets console logging level\n" \
372         "\t-s SIZE\t\tUse a buffer of size SIZE"
373
374 #define dos2unix_trivial_usage \
375         "[option] [FILE]"
376 #define dos2unix_full_usage \
377         "Converts FILE from dos format to unix format.  When no option\n" \
378         "is given, the input is converted to the opposite output format.\n" \
379         "When no file is given, uses stdin for input and stdout for output.\n\n" \
380         "Options:\n" \
381         "\t-u\toutput will be in UNIX format\n" \
382         "\t-d\toutput will be in DOS format"
383
384 #define dpkg_trivial_usage \
385         "-i package_file\n" \
386         "[-CPru] package_name"
387 #define dpkg_full_usage \
388         "\t-i\tInstall the package\n" \
389         "\t-C\tConfigure an unpackaged package\n" \
390         "\t-P\tPurge all files of a package\n" \
391         "\t-r\tRemove all but the configuration files for a package\n" \
392         "\t-u\tUnpack a package, but dont configure it\n"
393
394 #define dpkg_deb_trivial_usage \
395         "[-cefItxX] FILE [argument]"
396 #define dpkg_deb_full_usage \
397         "Perform actions on debian packages (.debs)\n\n" \
398         "Options:\n" \
399         "\t-c\tList contents of filesystem tree\n" \
400         "\t-e\tExtract control files to [argument] directory\n" \
401         "\t-f\tDisplay control field name starting with [argument]\n" \
402         "\t-I\tDisplay the control filenamed [argument]\n" \
403         "\t-t\tExtract filesystem tree to stdout in tar format\n" \
404         "\t-x\tExtract packages filesystem tree to directory\n" \
405         "\t-X\tVerbose extract"
406 #define dpkg_deb_example_usage \
407         "$ dpkg-deb -X ./busybox_0.48-1_i386.deb /tmp\n"
408
409 #ifdef CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
410 #define USAGE_DU_DEFALT_BLOCKSIZE_1k(a) a
411 #define USAGE_NOT_DU_DEFALT_BLOCKSIZE_1k(a)
412 #else
413 #define USAGE_DU_DEFALT_BLOCKSIZE_1k(a)
414 #define USAGE_NOT_DU_DEFALT_BLOCKSIZE_1k(a) a
415 #endif
416
417 #define du_trivial_usage \
418         "[-aHLdclsx" USAGE_HUMAN_READABLE("hm") "k] [FILE]..."
419 #define du_full_usage \
420         "Summarizes disk space used for each FILE and/or directory.\n" \
421         "Disk space is printed in units of " \
422         USAGE_DU_DEFALT_BLOCKSIZE_1k("1024") USAGE_NOT_DU_DEFALT_BLOCKSIZE_1k("512") \
423         " bytes.\n\n" \
424         "Options:\n" \
425         "\t-a\tshow sizes of files in addition to directories\n" \
426         "\t-H\tfollow symbolic links that are FILE command line args\n" \
427         "\t-L\tfollow all symbolic links encountered\n" \
428         "\t-d N\tlimit output to directories (and files with -a) of depth < N\n" \
429         "\t-c\toutput a grand total\n" \
430         "\t-l\tcount sizes many times if hard linked\n" \
431         "\t-s\tdisplay only a total for each argument\n" \
432         "\t-x\tskip directories on different filesystems\n" \
433         USAGE_HUMAN_READABLE( \
434         "\t-h\tprint sizes in human readable format (e.g., 1K 243M 2G )\n" \
435         "\t-m\tprint sizes in megabytes\n" ) \
436         "\t-k\tprint sizes in kilobytes" USAGE_DU_DEFALT_BLOCKSIZE_1k("(default)")
437 #define du_example_usage \
438         "$ du\n" \
439         "16      ./CVS\n" \
440         "12      ./kernel-patches/CVS\n" \
441         "80      ./kernel-patches\n" \
442         "12      ./tests/CVS\n" \
443         "36      ./tests\n" \
444         "12      ./scripts/CVS\n" \
445         "16      ./scripts\n" \
446         "12      ./docs/CVS\n" \
447         "104     ./docs\n" \
448         "2417    .\n"
449
450 #define dumpkmap_trivial_usage \
451         "> keymap"
452 #define dumpkmap_full_usage \
453         "Prints out a binary keyboard translation table to standard output."
454 #define dumpkmap_example_usage \
455         "$ dumpkmap > keymap\n"
456
457 #define dumpleases_trivial_usage \
458         "[-r|-a] [-f LEASEFILE]"
459 #define dumpleases_full_usage \
460         "\t-f,\t--file=FILENAME\tLeases file to load\n" \
461         "\t-r,\t--remaining\tInterepret lease times as time remaing\n" \
462         "\t-a,\t--absolute\tInterepret lease times as expire time\n"
463
464 #define dutmp_trivial_usage \
465         "[FILE]"
466 #define dutmp_full_usage \
467         "Dump utmp file format (pipe delimited) from FILE\n" \
468         "or stdin to stdout.  (i.e., 'dutmp /var/run/utmp')"
469 #define dutmp_example_usage \
470         "$ dutmp /var/run/utmp\n" \
471         "8|7||si|||0|0|0|955637625|760097|0\n" \
472         "2|0|~|~~|reboot||0|0|0|955637625|782235|0\n" \
473         "1|20020|~|~~|runlevel||0|0|0|955637625|800089|0\n" \
474         "8|125||l4|||0|0|0|955637629|998367|0\n" \
475         "6|245|tty1|1|LOGIN||0|0|0|955637630|998974|0\n" \
476         "6|246|tty2|2|LOGIN||0|0|0|955637630|999498|0\n" \
477         "7|336|pts/0|vt00|andersen|:0.0|0|0|0|955637763|0|0\n"
478
479 #ifdef CONFIG_FEATURE_FANCY_ECHO
480   #define USAGE_FANCY_ECHO(a) a
481 #else
482   #define USAGE_FANCY_ECHO(a) 
483 #endif
484
485 #define echo_trivial_usage \
486         USAGE_FANCY_ECHO("[-neE] ") "[ARG ...]"
487 #define echo_full_usage \
488         "Prints the specified ARGs to stdout\n\n" \
489         USAGE_FANCY_ECHO("Options:\n" \
490         "\t-n\tsuppress trailing newline\n" \
491         "\t-e\tinterpret backslash-escaped characters (i.e., \\t=tab)\n" \
492         "\t-E\tdisable interpretation of backslash-escaped characters")
493 #define echo_example_usage \
494         "$ echo "Erik is cool"\n" \
495         "Erik is cool\n" \
496         USAGE_FANCY_ECHO("$  echo -e "Erik\\nis\\ncool"\n" \
497         "Erik\n" \
498         "is\n" \
499         "cool\n" \
500         "$ echo "Erik\\nis\\ncool"\n" \
501         "Erik\\nis\\ncool\n")
502
503 #define env_trivial_usage \
504         "[-iu] [-] [name=value]... [command]"
505 #define env_full_usage \
506         "Prints the current environment or runs a program after setting\n" \
507         "up the specified environment.\n\n" \
508         "Options:\n" \
509         "\t-, -i\tstart with an empty environment\n" \
510         "\t-u\tremove variable from the environment\n"
511
512 #define expr_trivial_usage \
513         "EXPRESSION"
514 #define expr_full_usage \
515         "Prints the value of EXPRESSION to standard output.\n\n" \
516         "EXPRESSION may be:\n" \
517         "\tARG1 |  ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" \
518         "\tARG1 &  ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" \
519         "\tARG1 <  ARG2 ARG1 is less than ARG2\n" \
520         "\tARG1 <= ARG2 ARG1 is less than or equal to ARG2\n" \
521         "\tARG1 =  ARG2 ARG1 is equal to ARG2\n" \
522         "\tARG1 != ARG2 ARG1 is unequal to ARG2\n" \
523         "\tARG1 >= ARG2 ARG1 is greater than or equal to ARG2\n" \
524         "\tARG1 >  ARG2 ARG1 is greater than ARG2\n" \
525         "\tARG1 +  ARG2 arithmetic sum of ARG1 and ARG2\n" \
526         "\tARG1 -  ARG2 arithmetic difference of ARG1 and ARG2\n" \
527         "\tARG1 *  ARG2 arithmetic product of ARG1 and ARG2\n" \
528         "\tARG1 /  ARG2 arithmetic quotient of ARG1 divided by ARG2\n" \
529         "\tARG1 %  ARG2 arithmetic remainder of ARG1 divided by ARG2\n" \
530         "\tSTRING : REGEXP             anchored pattern match of REGEXP in STRING\n" \
531         "\tmatch STRING REGEXP         same as STRING : REGEXP\n" \
532         "\tsubstr STRING POS LENGTH    substring of STRING, POS counted from 1\n" \
533         "\tindex STRING CHARS          index in STRING where any CHARS is found,\n" \
534         "\t                            or 0\n" \
535         "\tlength STRING               length of STRING\n" \
536         "\tquote TOKEN                 interpret TOKEN as a string, even if\n" \
537         "\t                            it is a keyword like `match' or an\n" \
538         "\t                            operator like `/'\n" \
539         "\t( EXPRESSION )              value of EXPRESSION\n\n" \
540         "Beware that many operators need to be escaped or quoted for shells.\n" \
541         "Comparisons are arithmetic if both ARGs are numbers, else\n" \
542         "lexicographical.  Pattern matches return the string matched between \n" \
543         "\\( and \\) or null; if \\( and \\) are not used, they return the number \n" \
544         "of characters matched or 0."
545
546 #define false_trivial_usage \
547         ""
548 #define false_full_usage \
549         "Return an exit code of FALSE (1)."
550 #define false_example_usage \
551         "$ false\n" \
552         "$ echo $?\n" \
553         "1\n"
554
555 #define fbset_trivial_usage \
556         "[options] [mode]"
557 #define fbset_full_usage \
558         "Show and modify frame buffer settings"
559 #define fbset_example_usage \
560         "$ fbset\n" \
561         "mode "1024x768-76"\n" \
562         "\t# D: 78.653 MHz, H: 59.949 kHz, V: 75.694 Hz\n" \
563         "\tgeometry 1024 768 1024 768 16\n" \
564         "\ttimings 12714 128 32 16 4 128 4\n" \
565         "\taccel false\n" \
566         "\trgba 5/11,6/5,5/0,0/0\n" \
567         "endmode\n"
568
569 #define fdflush_trivial_usage \
570         "DEVICE"
571 #define fdflush_full_usage \
572         "Forces floppy disk drive to detect disk change"
573
574 #define fdformat_trivial_usage \
575         "[-n] DEVICE"
576 #define fdformat_full_usage \
577         "Low-level formats a floppy disk\n\n" \
578         "Options:\n" \
579         "\t-n\tDon't verify after format"
580
581 #define fdisk_trivial_usage \
582         "[-l] [-v] [-b SSZ] [-u] DISK"
583 #define fdisk_full_usage \
584         "Change partition table\n" \
585         "Options:\n" \
586         "-l  List partition table(s)\n" \
587         "-u  Give Start and End in sector (instead of cylinder) units\n" \
588         "-s PARTITION  Give partition size(s) in blocks\n" \
589         "-b 2048: (for certain MO disks) use 2048-byte sectors\n" \
590         "-v  Give fdisk version"
591
592 #ifdef CONFIG_FEATURE_FIND_TYPE
593   #define USAGE_FIND_TYPE(a) a
594 #else
595   #define USAGE_FIND_TYPE(a)
596 #endif
597 #ifdef CONFIG_FEATURE_FIND_PERM
598   #define USAGE_FIND_PERM(a) a
599 #else
600   #define USAGE_FIND_PERM(a)
601 #endif
602 #ifdef CONFIG_FEATURE_FIND_MTIME
603   #define USAGE_FIND_MTIME(a) a
604 #else
605   #define USAGE_FIND_MTIME(a)
606 #endif
607 #ifdef CONFIG_FEATURE_FIND_NEWER
608   #define USAGE_FIND_NEWER(a) a
609 #else
610   #define USAGE_FIND_NEWER(a)
611 #endif
612 #ifdef CONFIG_FEATURE_FIND_INUM
613   #define USAGE_FIND_INUM(a) a
614 #else
615   #define USAGE_FIND_INUM(a)
616 #endif
617
618 #define find_trivial_usage \
619         "[PATH...] [EXPRESSION]"
620 #define find_full_usage \
621         "Search for files in a directory hierarchy.  The default PATH is\n" \
622         "the current directory; default EXPRESSION is '-print'\n" \
623         "\nEXPRESSION may consist of:\n" \
624         "\t-follow\t\tDereference symbolic links.\n" \
625         "\t-name PATTERN\tFile name (leading directories removed) matches PATTERN.\n" \
626         "\t-print\t\tPrint (default and assumed).\n" \
627         USAGE_FIND_TYPE( \
628         "\n\t-type X\t\tFiletype matches X (where X is one of: f,d,l,b,c,...)" \
629 ) USAGE_FIND_PERM( \
630         "\n\t-perm PERMS\tPermissions match any of (+NNN); all of (-NNN);\n\t\t\tor exactly (NNN)" \
631 ) USAGE_FIND_MTIME( \
632         "\n\t-mtime TIME\tModified time is greater than (+N); less than (-N);\n\t\t\tor exactly (N) days" \
633 ) USAGE_FIND_NEWER( \
634         "\n\t-newer FILE\tModified time is more recent than FILE's" \
635 ) USAGE_FIND_INUM( \
636         "\n\t-inum N\t\tFile has inode number N")
637 #define find_example_usage \
638         "$ find / -name /etc/passwd\n" \
639         "/etc/passwd\n"
640
641 #define fold_trivial_usage \
642         "[bsw] [FILE]"
643 #define fold_full_usage \
644         "Wrap input lines in each FILE (standard input by default), writing to\n" \
645         "standard output.\n\n" \
646         "Options:\n" \
647         "\t-b\tcount bytes rather than columns\n" \
648         "\t-s\tbreak at spaces\n" \
649         "\t-w\tuse WIDTH columns instead of 80\n"
650
651 #define free_trivial_usage \
652         ""
653 #define free_full_usage \
654         "Displays the amount of free and used system memory"
655 #define free_example_usage \
656         "$ free\n" \
657         "              total         used         free       shared      buffers\n" \
658         "  Mem:       257628       248724         8904        59644        93124\n" \
659         " Swap:       128516         8404       120112\n" \
660         "Total:       386144       257128       129016\n" \
661
662 #define freeramdisk_trivial_usage \
663         "DEVICE"
664 #define freeramdisk_full_usage \
665         "Frees all memory used by the specified ramdisk."
666 #define freeramdisk_example_usage \
667         "$ freeramdisk /dev/ram2\n"
668
669 #define fsck_minix_trivial_usage \
670         "[-larvsmf] /dev/name"
671 #define fsck_minix_full_usage \
672         "Performs a consistency check for MINIX filesystems.\n\n" \
673         "Options:\n" \
674         "\t-l\tLists all filenames\n" \
675         "\t-r\tPerform interactive repairs\n" \
676         "\t-a\tPerform automatic repairs\n" \
677         "\t-v\tverbose\n" \
678         "\t-s\tOutputs super-block information\n" \
679         "\t-m\tActivates MINIX-like \"mode not cleared\" warnings\n" \
680         "\t-f\tForce file system check."
681
682 #define ftpget_trivial_usage \
683         "[options] remote-host local-directory remote-file"
684 #define ftpget_full_usage \
685         "Retrieve a remote file via FTP.\n\n" \
686         "Options:\n" \
687         "\t-c, --continue         Continue a previous transfer\n" \
688         "\t-v, --verbose          Verbose\n" \
689         "\t-u, --username         Username to be used\n" \
690         "\t-p, --password         Password to be used\n" \
691         "\t-P, --port             Port number to be used\n" 
692
693 #define ftpput_trivial_usage \
694         "[options] remote-host remote-directory local-file"
695 #define ftpput_full_usage \
696         "Store a local file on a remote machine via FTP.\n\n" \
697         "Options:\n" \
698         "\t-v, --verbose          Verbose\n" \
699         "\t-u, --username         Username to be used\n" \
700         "\t-p, --password         Password to be used\n" \
701         "\t-P, --port             Port number to be used\n" 
702
703 #define getopt_trivial_usage \
704         "[OPTIONS]..."
705 #define getopt_full_usage \
706         "Parse command options\n" \
707         "\t-a, --alternative            Allow long options starting with single -\n" \
708         "\t-l, --longoptions=longopts   Long options to be recognized\n" \
709         "\t-n, --name=progname          The name under which errors are reported\n" \
710         "\t-o, --options=optstring      Short options to be recognized\n" \
711         "\t-q, --quiet                  Disable error reporting by getopt(3)\n" \
712         "\t-Q, --quiet-output           No normal output\n" \
713         "\t-s, --shell=shell            Set shell quoting conventions\n" \
714         "\t-T, --test                   Test for getopt(1) version\n" \
715         "\t-u, --unqote                 Do not quote the output"
716 #define getopt_example_usage \
717         "$ cat getopt.test\n" \
718         "#!/bin/sh\n" \
719         "GETOPT=`getopt -o ab:c:: --long a-long,b-long:,c-long:: \\\n" \
720         "       -n 'example.busybox' -- "$@"`\n" \
721         "if [ $? != 0 ] ; then  exit 1 ; fi\n" \
722         "eval set -- "$GETOPT"\n" \
723         "while true ; do\n" \
724         " case $1 in\n" \
725         "   -a|--a-long) echo \"Option a\" ; shift ;;\n" \
726         "   -b|--b-long) echo \"Option b, argument `$2'\" ; shift 2 ;;\n" \
727         "   -c|--c-long)\n" \
728         "     case "$2" in\n" \
729         "       \"\") echo \"Option c, no argument\"; shift 2 ;;\n" \
730         "       *)  echo \"Option c, argument `$2'\" ; shift 2 ;;\n" \
731         "     esac ;;\n" \
732         "   --) shift ; break ;;\n" \
733         "   *) echo \"Internal error!\" ; exit 1 ;;\n" \
734         " esac\n" \
735         "done\n"
736
737 #define getty_trivial_usage \
738         "getty [OPTIONS]... baud_rate,... line [termtype]"
739 #define getty_full_usage \
740         "\nOpens a tty, prompts for a login name, then invokes /bin/login\n\n" \
741         "Options:\n" \
742         "\t-h\t\tEnable hardware (RTS/CTS) flow control.\n" \
743         "\t-i\t\tDo not display /etc/issue before running login.\n" \
744         "\t-L\t\tLocal line, so do not do carrier detect.\n" \
745         "\t-m\t\tGet baud rate from modem's CONNECT status message.\n" \
746         "\t-w\t\tWait for a CR or LF before sending /etc/issue.\n" \
747         "\t-n\t\tDo not prompt the user for a login name.\n" \
748         "\t-f issue_file\tDisplay issue_file instead of /etc/issue.\n" \
749         "\t-l login_app\tInvoke login_app instead of /bin/login.\n" \
750         "\t-t timeout\tTerminate after timeout if no username is read.\n" \
751         "\t-I initstring\tSets the init string to send before anything else.\n" \
752         "\t-H login_host\tLog login_host into the utmp file as the hostname."
753
754
755 #define grep_trivial_usage \
756         "[-ihHnqvs] PATTERN [FILEs...]"
757 #define grep_full_usage \
758         "Search for PATTERN in each FILE or standard input.\n\n" \
759         "Options:\n" \
760         "\t-H\tprefix output lines with filename where match was found\n" \
761         "\t-h\tsuppress the prefixing filename on output\n" \
762         "\t-i\tignore case distinctions\n" \
763         "\t-l\tlist names of files that match\n" \
764         "\t-n\tprint line number with output lines\n" \
765         "\t-q\tbe quiet. Returns 0 if result was found, 1 otherwise\n" \
766         "\t-v\tselect non-matching lines\n" \
767         "\t-s\tsuppress file open/read error messages"
768 #define grep_example_usage \
769         "$ grep root /etc/passwd\n" \
770         "root:x:0:0:root:/root:/bin/bash\n" \
771         "$ grep ^[rR]oo. /etc/passwd\n" \
772         "root:x:0:0:root:/root:/bin/bash\n"
773
774 #define gunzip_trivial_usage \
775         "[OPTION]... FILE"
776 #define gunzip_full_usage \
777         "Uncompress FILE (or standard input if FILE is '-').\n\n" \
778         "Options:\n" \
779         "\t-c\tWrite output to standard output\n" \
780         "\t-t\tTest compressed file integrity"
781 #define gunzip_example_usage \
782         "$ ls -la /tmp/BusyBox*\n" \
783         "-rw-rw-r--    1 andersen andersen   557009 Apr 11 10:55 /tmp/BusyBox-0.43.tar.gz\n" \
784         "$ gunzip /tmp/BusyBox-0.43.tar.gz\n" \
785         "$ ls -la /tmp/BusyBox*\n" \
786         "-rw-rw-r--    1 andersen andersen  1761280 Apr 14 17:47 /tmp/BusyBox-0.43.tar\n"
787
788 #define gzip_trivial_usage \
789         "[OPTION]... [FILE]..."
790 #define gzip_full_usage \
791         "Compress FILE(s) with maximum compression.\n" \
792         "When FILE is '-' or unspecified, reads standard input.  Implies -c.\n\n" \
793         "Options:\n" \
794         "\t-c\tWrite output to standard output instead of FILE.gz\n" \
795         "\t-d\tdecompress"
796 #define gzip_example_usage \
797         "$ ls -la /tmp/busybox*\n" \
798         "-rw-rw-r--    1 andersen andersen  1761280 Apr 14 17:47 /tmp/busybox.tar\n" \
799         "$ gzip /tmp/busybox.tar\n" \
800         "$ ls -la /tmp/busybox*\n" \
801         "-rw-rw-r--    1 andersen andersen   554058 Apr 14 17:49 /tmp/busybox.tar.gz\n"
802
803 #define halt_trivial_usage \
804         ""
805 #define halt_full_usage \
806         "Halt the system."
807
808 #ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
809 #define USAGE_HDPARM_IDENT(a) a
810 #else
811 #define USAGE_HDPARM_IDENT(a)
812 #endif
813
814 #ifdef CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF
815 #define USAGE_SCAN_HWIF(a) a
816 #else
817 #define USAGE_SCAN_HWIF(a)
818 #endif
819
820 #ifdef CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
821 #define USAGE_UNREGISTER_HWIF(a) a
822 #else
823 #define USAGE_UNREGISTER_HWIF(a)
824 #endif
825
826 #ifdef CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET
827 #define USAGE_DRIVE_RESET(a) a
828 #else
829 #define USAGE_DRIVE_RESET(a)
830 #endif
831
832 #ifdef CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
833 #define USAGE_TRISTATE_HWIF(a) a
834 #else
835 #define USAGE_TRISTATE_HWIF(a)
836 #endif
837
838 #ifdef CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA
839 #define USAGE_GETSET_DMA(a) a
840 #else
841 #define USAGE_GETSET_DMA(a)
842 #endif
843
844 #define hdparm_trivial_usage \
845         "[options] [device] .."
846 #define hdparm_full_usage \
847         "Options:" \
848         " -a   get/set fs readahead\n" \
849         " -A   set drive read-lookahead flag (0/1)\n" \
850         " -b   get/set bus state (0 == off, 1 == on, 2 == tristate)\n" \
851         " -B   set Advanced Power Management setting (1-255)\n" \
852         " -c   get/set IDE 32-bit IO setting\n" \
853         " -C   check IDE power mode status\n" \
854         USAGE_GETSET_DMA(" -d   get/set using_dma flag\n") \
855         " -D   enable/disable drive defect-mgmt\n" \
856         " -f   flush buffer cache for device on exit\n" \
857         " -g   display drive geometry\n" \
858         " -h   display terse usage information\n" \
859         " -i   display drive identification\n" \
860         USAGE_HDPARM_IDENT(" -I   detailed/current information directly from drive\n") \
861         USAGE_HDPARM_IDENT(" -Istdin  similar to -I, but wants /proc/ide/" "*" "/hd?/identify as input\n") \
862         " -k   get/set keep_settings_over_reset flag (0/1)\n" \
863         " -K   set drive keep_features_over_reset flag (0/1)\n" \
864         " -L   set drive doorlock (0/1) (removable harddisks only)\n" \
865         " -m   get/set multiple sector count\n" \
866         " -n   get/set ignore-write-errors flag (0/1)\n" \
867         " -p   set PIO mode on IDE interface chipset (0,1,2,3,4,...)\n" \
868         " -P   set drive prefetch count\n" \
869         " -q   change next setting quietly\n" \
870         " -Q   get/set DMA tagged-queuing depth (if supported)\n" \
871         " -r   get/set readonly flag (DANGEROUS to set)\n" \
872         USAGE_SCAN_HWIF(" -R   register an IDE interface (DANGEROUS)\n") \
873         " -S   set standby (spindown) timeout\n" \
874         " -t   perform device read timings\n" \
875         " -T   perform cache read timings\n" \
876         " -u   get/set unmaskirq flag (0/1)\n" \
877         USAGE_UNREGISTER_HWIF(" -U   un-register an IDE interface (DANGEROUS)\n") \
878         " -v   defaults; same as -mcudkrag for IDE drives\n" \
879         " -V   display program version and exit immediately\n" \
880         USAGE_DRIVE_RESET(" -w   perform device reset (DANGEROUS)\n") \
881         " -W   set drive write-caching flag (0/1) (DANGEROUS)\n" \
882         USAGE_TRISTATE_HWIF(" -x   tristate device for hotswap (0/1) (DANGEROUS)\n") \
883         " -X   set IDE xfer mode (DANGEROUS)\n" \
884         " -y   put IDE drive in standby mode\n" \
885         " -Y   put IDE drive to sleep\n" \
886         " -Z   disable Seagate auto-powersaving mode\n" \
887         " -z   re-read partition table\n"
888
889 #ifdef CONFIG_FEATURE_FANCY_HEAD
890 #define USAGE_FANCY_HEAD(a) a
891 #else
892 #define USAGE_FANCY_HEAD(a)
893 #endif
894
895 #define head_trivial_usage \
896         "[OPTION]... [FILE]..."
897 #define head_full_usage \
898         "Print first 10 lines of each FILE to standard output.\n" \
899         "With more than one FILE, precede each with a header giving the\n" \
900         "file name. With no FILE, or when FILE is -, read standard input.\n\n" \
901         "Options:\n" \
902         "\t-n NUM\t\tPrint first NUM lines instead of first 10" \
903         USAGE_FANCY_HEAD( \
904         "\n\t-c NUM\t\toutput the first NUM bytes\n" \
905         "\t-q\t\tnever output headers giving file names\n" \
906         "\t-v\t\talways output headers giving file names" )
907 #define head_example_usage \
908         "$ head -n 2 /etc/passwd\n" \
909         "root:x:0:0:root:/root:/bin/bash\n" \
910         "daemon:x:1:1:daemon:/usr/sbin:/bin/sh\n"
911
912 #define hexdump_trivial_usage \
913         "[-[bcdefnosvx]] [OPTION] FILE"
914 #define hexdump_full_usage \
915         "The hexdump utility is a filter which displays the specified files,\n" \
916         "or the standard input, if no files are specified, in a user specified\n"\
917         "format\n" \
918         "\t-b\t\tOne-byte octal display\n" \
919         "\t-c\t\tOne-byte character display\n" \
920         "\t-d\t\tTwo-byte decimal display\n" \
921         "\t-e FORMAT STRING\n" \
922         "\t-f FORMAT FILE\n" \
923         "\t-n LENGTH\tInterpret only length bytes of input\n" \
924         "\t-o\t\tTwo-byte octal display\n" \
925         "\t-s OFFSET\tSkip offset byte\n" \
926         "\t-v\t\tdisplay all input data\n" \
927         "\t-x\t\tTwo-byte hexadecimal display\n"
928
929 #define hostid_trivial_usage \
930         ""
931 #define hostid_full_usage \
932         "Print out a unique 32-bit identifier for the machine."
933
934 #define hostname_trivial_usage \
935         "[OPTION] {hostname | -F FILE}"
936 #define hostname_full_usage \
937         "Get or set the hostname or DNS domain name. If a hostname is given\n" \
938         "(or FILE with the -F parameter), the host name will be set.\n\n" \
939         "Options:\n" \
940         "\t-s\tShort\n" \
941         "\t-i\tAddresses for the hostname\n" \
942         "\t-d\tDNS domain name\n" \
943         "\t-f\tFully qualified domain name\n" \
944         "\t-F FILE\tUse the contents of FILE to specify the hostname"
945 #define hostname_example_usage \
946         "$ hostname\n" \
947         "sage \n"
948
949 #ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
950   #define USAGE_HTTPD_BASIC_AUTH(a) a
951   #ifdef CONFIG_FEATURE_HTTPD_AUTH_MD5
952     #define USAGE_HTTPD_AUTH_MD5(a) a
953   #else
954     #define USAGE_HTTPD_AUTH_MD5(a)
955   #endif
956 #else
957   #define USAGE_HTTPD_BASIC_AUTH(a)
958   #define USAGE_HTTPD_AUTH_MD5(a)
959 #endif
960 #ifdef CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY
961   #define USAGE_HTTPD_STANDALONE(a)
962   #define USAGE_HTTPD_SETUID(a)
963 #else
964   #define USAGE_HTTPD_STANDALONE(a) a
965   #ifdef CONFIG_FEATURE_HTTPD_SETUID
966     #define USAGE_HTTPD_SETUID(a) a
967   #else
968     #define USAGE_HTTPD_SETUID(a)
969   #endif
970 #endif
971 #define httpd_trivial_usage \
972         "[-c <conf file>]" \
973         USAGE_HTTPD_STANDALONE(" [-p <port>]") \
974         USAGE_HTTPD_SETUID(" [-u user]") \
975         USAGE_HTTPD_BASIC_AUTH(" [-r <realm>]") \
976         USAGE_HTTPD_AUTH_MD5(" [-m pass]") \
977         " [-d/-e <string>]"
978 #define httpd_full_usage \
979        "Listens for incoming http server requests.\n"\
980        "Options:\n" \
981        "\t-c FILE\tSpecifies configuration file. (default httpd.conf)\n" \
982        USAGE_HTTPD_STANDALONE("\t-p PORT\tServer port (default 80)\n") \
983        USAGE_HTTPD_SETUID("\t-u USER\tSet uid to USER after listening privilegies port\n") \
984        USAGE_HTTPD_BASIC_AUTH("\t-r REALM\tAuthentication Realm for Basic Authentication\n") \
985        USAGE_HTTPD_AUTH_MD5("\t-m PASS\tCrypt PASS with md5 algorithm\n") \
986        "\t-e STRING\tHtml encode STRING\n" \
987        "\t-d STRING\tURL decode STRING"
988
989 #define hwclock_trivial_usage \
990         "[-r|--show] [-s|--hctosys] [-w|--systohc] [-l|--localtime] [-u|--utc]"
991 #define hwclock_full_usage \
992         "Query and set the hardware clock (RTC)\n\n" \
993         "Options:\n" \
994         "\t-r\tread hardware clock and print result\n" \
995         "\t-s\tset the system time from the hardware clock\n" \
996         "\t-w\tset the hardware clock to the current system time\n" \
997         "\t-u\tthe hardware clock is kept in coordinated universal time\n" \
998         "\t-l\tthe hardware clock is kept in local time"
999
1000 #ifdef CONFIG_SELINUX
1001 #define USAGE_SELINUX(a, b) a
1002 #else
1003 #define USAGE_SELINUX(a, b) b
1004 #endif
1005
1006 #define id_trivial_usage \
1007         "[OPTIONS]... [USERNAME]"
1008 #define id_full_usage \
1009         "Print information for USERNAME or the current user\n\n" \
1010         "Options:\n" \
1011         "\t-g\tprints only the group ID\n" \
1012         "\t-u\tprints only the user ID\n" \
1013         USAGE_SELINUX("\t-c\tprints only the security context\n", "") \
1014         "\t-n\tprint a name instead of a number (with for -ug)\n" \
1015         "\t-r\tprints the real user ID instead of the effective ID (with -ug)"
1016 #define id_example_usage \
1017         "$ id\n" \
1018         "uid=1000(andersen) gid=1000(andersen)\n"
1019
1020 #ifdef CONFIG_FEATURE_IFCONFIG_SLIP
1021   #define USAGE_SIOCSKEEPALIVE(a) a
1022 #else
1023   #define USAGE_SIOCSKEEPALIVE(a)
1024 #endif
1025 #ifdef CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
1026   #define USAGE_IFCONFIG_MII(a) a
1027 #else
1028   #define USAGE_IFCONFIG_MII(a)
1029 #endif
1030 #ifdef CONFIG_FEATURE_IFCONFIG_HW
1031   #define USAGE_IFCONFIG_HW(a) a
1032 #else
1033   #define USAGE_IFCONFIG_HW(a)
1034 #endif
1035 #ifdef CONFIG_FEATURE_IFCONFIG_STATUS
1036   #define USAGE_IFCONFIG_OPT_A(a) a
1037 #else
1038   #define USAGE_IFCONFIG_OPT_A(a)
1039 #endif
1040 #ifdef CONFIG_FEATURE_IPV6
1041   #define USAGE_IPV6(a) a
1042 #else
1043   #define USAGE_IPV6(a)
1044 #endif
1045
1046 #define ifconfig_trivial_usage \
1047         USAGE_IFCONFIG_OPT_A("[-a]") " <interface> [<address>]"
1048 #define ifconfig_full_usage \
1049         "configure a network interface\n\n" \
1050         "Options:\n" \
1051         USAGE_IPV6("[add <address>[/<prefixlen>]]\n") \
1052         USAGE_IPV6("[del <address>[/<prefixlen>]]\n") \
1053         "\t[[-]broadcast [<address>]]  [[-]pointopoint [<address>]]\n" \
1054         "\t[netmask <address>]  [dstaddr <address>]\n" \
1055         USAGE_SIOCSKEEPALIVE("\t[outfill <NN>] [keepalive <NN>]\n") \
1056         "\t" USAGE_IFCONFIG_HW("[hw ether <address>]  ") \
1057     "[metric <NN>]  [mtu <NN>]\n" \
1058         "\t[[-]trailers]  [[-]arp]  [[-]allmulti]\n" \
1059         "\t[multicast]  [[-]promisc]  [txqueuelen <NN>]  [[-]dynamic]\n" \
1060         USAGE_IFCONFIG_MII("\t[mem_start <NN>]  [io_addr <NN>]  [irq <NN>]\n") \
1061         "\t[up|down] ..."
1062
1063 #define ifup_trivial_usage \
1064         "<-ahinv> <ifaces...>"
1065 #define ifup_full_usage \
1066         "Usage: ifup <options> <ifaces...>\n\n" \
1067         "Options:\n" \
1068         "\t-h\tthis help\n" \
1069         "\t-a\tde/configure all interfaces automatically\n" \
1070         "\t-i FILE\tuse FILE for interface definitions\n" \
1071         "\t-n\tprint out what would happen, but don't do it\n" \
1072         "\t\t\t(note that this option doesn't disable mappings)\n" \
1073         "\t-v\tprint out what would happen before doing it\n" \
1074         "\t-m\tdon't run any mappings\n" \
1075         "\t-f\tforce de/configuration\n"
1076
1077 #define ifdown_trivial_usage \
1078         "<-ahinv> <ifaces...>"
1079 #define ifdown_full_usage \
1080         "Usage: ifdown <options> <ifaces...>\n\n" \
1081         "Options:\n" \
1082         "\t-h\tthis help\n" \
1083         "\t-a\tde/configure all interfaces automatically\n" \
1084         "\t-i FILE\tuse FILE for interface definitions\n" \
1085         "\t-n\tprint out what would happen, but don't do it\n" \
1086         "\t\t(note that this option doesn't disable mappings)\n" \
1087         "\t-v\tprint out what would happen before doing it\n" \
1088         "\t-m\tdon't run any mappings\n" \
1089         "\t-f\tforce de/configuration\n"
1090         
1091 #define inetd_trivial_usage \
1092         "[-q len] [conf]"
1093 #define inetd_full_usage \
1094         "Usage: [-q len] [conf]\n\n" \
1095         "Option:\n" \
1096         "\t-q\tSets the size of the socket listen queue to\n" \
1097         "the specified value. Default is 128."
1098
1099 #define init_trivial_usage \
1100         ""
1101 #define init_full_usage \
1102         "Init is the parent of all processes."
1103 #define init_notes_usage \
1104 "This version of init is designed to be run only by the kernel.\n" \
1105 "\n" \
1106 "BusyBox init doesn't support multiple runlevels.  The runlevels field of\n" \
1107 "the /etc/inittab file is completely ignored by BusyBox init. If you want \n" \
1108 "runlevels, use sysvinit.\n" \
1109 "\n" \
1110 "BusyBox init works just fine without an inittab.  If no inittab is found, \n" \
1111 "it has the following default behavior:\n" \
1112 "\n" \
1113 "       ::sysinit:/etc/init.d/rcS\n" \
1114 "       ::askfirst:/bin/sh\n" \
1115 "       ::ctrlaltdel:/sbin/reboot\n" \
1116 "       ::shutdown:/sbin/swapoff -a\n" \
1117 "       ::shutdown:/bin/umount -a -r\n" \
1118 "       ::restart:/sbin/init\n" \
1119 "\n" \
1120 "if it detects that /dev/console is _not_ a serial console, it will also run:\n" \
1121 "\n" \
1122 "       tty2::askfirst:/bin/sh\n" \
1123 "       tty3::askfirst:/bin/sh\n" \
1124 "       tty4::askfirst:/bin/sh\n" \
1125 "\n" \
1126 "If you choose to use an /etc/inittab file, the inittab entry format is as follows:\n" \
1127 "\n" \
1128 "       <id>:<runlevels>:<action>:<process>\n" \
1129 "\n" \
1130 "       <id>: \n" \
1131 "\n" \
1132 "               WARNING: This field has a non-traditional meaning for BusyBox init!\n" \
1133 "               The id field is used by BusyBox init to specify the controlling tty for\n" \
1134 "               the specified process to run on.  The contents of this field are\n" \
1135 "               appended to "/dev/" and used as-is.  There is no need for this field to\n" \
1136 "               be unique, although if it isn't you may have strange results.  If this\n" \
1137 "               field is left blank, the controlling tty is set to the console.  Also\n" \
1138 "               note that if BusyBox detects that a serial console is in use, then only\n" \
1139 "               entries whose controlling tty is either the serial console or /dev/null\n" \
1140 "               will be run.  BusyBox init does nothing with utmp.  We don't need no\n" \
1141 "               stinkin' utmp.\n" \
1142 "\n" \
1143 "       <runlevels>: \n" \
1144 "\n" \
1145 "               The runlevels field is completely ignored.\n" \
1146 "\n" \
1147 "       <action>: \n" \
1148 "\n" \
1149 "               Valid actions include: sysinit, respawn, askfirst, wait, \n" \
1150 "               once, restart, ctrlaltdel, and shutdown.\n" \
1151 "\n" \
1152 "               The available actions can be classified into two groups: actions\n" \
1153 "               that are run only once, and actions that are re-run when the specified\n" \
1154 "               process exits.\n" \
1155 "\n" \
1156 "               Run only-once actions:\n" \
1157 "\n" \
1158 "                       'sysinit' is the first item run on boot.  init waits until all\n" \
1159 "                       sysinit actions are completed before continuing.  Following the\n" \
1160 "                       completion of all sysinit actions, all 'wait' actions are run.\n" \
1161 "                       'wait' actions, like  'sysinit' actions, cause init to wait until\n" \
1162 "                       the specified task completes.  'once' actions are asynchronous,\n" \
1163 "                       therefore, init does not wait for them to complete.  'restart' is\n" \
1164 "                       the action taken to restart the init process.  By default this should\n" \
1165 "                       simply run /sbin/init, but can be a script which runs pivot_root or it\n" \
1166 "                       can do all sorts of other interesting things.  The 'ctrlaltdel' init\n" \
1167 "                       actions are run when the system detects that someone on the system\n" \
1168 "                       console has pressed the CTRL-ALT-DEL key combination.  Typically one\n" \
1169 "                       wants to run 'reboot' at this point to cause the system to reboot.\n" \
1170 "                       Finally the 'shutdown' action specifies the actions to taken when\n" \
1171 "                       init is told to reboot.  Unmounting filesystems and disabling swap\n" \
1172 "                       is a very good here\n" \
1173 "\n" \
1174 "               Run repeatedly actions:\n" \
1175 "\n" \
1176 "                       'respawn' actions are run after the 'once' actions.  When a process\n" \
1177 "                       started with a 'respawn' action exits, init automatically restarts\n" \
1178 "                       it.  Unlike sysvinit, BusyBox init does not stop processes from\n" \
1179 "                       respawning out of control.  The 'askfirst' actions acts just like\n" \
1180 "                       respawn, except that before running the specified process it\n" \
1181 "                       displays the line "Please press Enter to activate this console."\n" \
1182 "                       and then waits for the user to press enter before starting the\n" \
1183 "                       specified process.  \n" \
1184 "\n" \
1185 "               Unrecognized actions (like initdefault) will cause init to emit an\n" \
1186 "               error message, and then go along with its business.  All actions are\n" \
1187 "               run in the order they appear in /etc/inittab.\n" \
1188 "\n" \
1189 "       <process>: \n" \
1190 "\n" \
1191 "               Specifies the process to be executed and it's command line.\n" \
1192 "\n" \
1193 "Example /etc/inittab file:\n" \
1194 "\n" \
1195 "       # This is run first except when booting in single-user mode.\n" \
1196 "       #\n" \
1197 "       ::sysinit:/etc/init.d/rcS\n" \
1198 "       \n" \
1199 "       # /bin/sh invocations on selected ttys\n" \
1200 "       #\n" \
1201 "       # Start an "askfirst" shell on the console (whatever that may be)\n" \
1202 "       ::askfirst:-/bin/sh\n" \
1203 "       # Start an "askfirst" shell on /dev/tty2-4\n" \
1204 "       tty2::askfirst:-/bin/sh\n" \
1205 "       tty3::askfirst:-/bin/sh\n" \
1206 "       tty4::askfirst:-/bin/sh\n" \
1207 "       \n" \
1208 "       # /sbin/getty invocations for selected ttys\n" \
1209 "       #\n" \
1210 "       tty4::respawn:/sbin/getty 38400 tty4\n" \
1211 "       tty5::respawn:/sbin/getty 38400 tty5\n" \
1212 "       \n" \
1213 "       \n" \
1214 "       # Example of how to put a getty on a serial line (for a terminal)\n" \
1215 "       #\n" \
1216 "       #::respawn:/sbin/getty -L ttyS0 9600 vt100\n" \
1217 "       #::respawn:/sbin/getty -L ttyS1 9600 vt100\n" \
1218 "       #\n" \
1219 "       # Example how to put a getty on a modem line.\n" \
1220 "       #::respawn:/sbin/getty 57600 ttyS2\n" \
1221 "       \n" \
1222 "       # Stuff to do when restarting the init process\n" \
1223 "       ::restart:/sbin/init\n" \
1224 "       \n" \
1225 "       # Stuff to do before rebooting\n" \
1226 "       ::ctrlaltdel:/sbin/reboot\n" \
1227 "       ::shutdown:/bin/umount -a -r\n" \
1228 "       ::shutdown:/sbin/swapoff -a\n"
1229
1230 #ifdef CONFIG_FEATURE_INSMOD_LOAD_MAP
1231   #define USAGE_INSMOD_MAP(a) a
1232 #else
1233   #define USAGE_INSMOD_MAP(a)
1234 #endif
1235 #define insmod_trivial_usage \
1236         "[OPTION]... MODULE [symbol=value]..."
1237 #define insmod_full_usage \
1238         "Loads the specified kernel modules into the kernel.\n\n" \
1239         "Options:\n" \
1240         "\t-f\tForce module to load into the wrong kernel version.\n" \
1241         "\t-k\tMake module autoclean-able.\n" \
1242         "\t-v\tverbose output\n"  \
1243         "\t-L\tLock to prevent simultaneous loads of a module\n" \
1244         USAGE_INSMOD_MAP("\t-m\tOutput load map to stdout") \
1245         "\t-x\tdo not export externs\n"
1246
1247 #define ip_trivial_usage \
1248         "[ OPTIONS ] { address | link | route | tunnel } { COMMAND | help }"
1249 #define ip_full_usage \
1250         "ip [ OPTIONS ] OBJECT { COMMAND | help }\n" \
1251         "where  OBJECT := { link | addr | route | tunnel }\n" \
1252         "OPTIONS := { -f[amily] { inet | inet6 | link } | -o[neline] }\n"
1253
1254 #define ipaddr_trivial_usage \
1255         "{ {add|del} IFADDR dev STRING | {show|flush} [ dev STRING ] [ to PREFIX ] }"
1256 #define ipaddr_full_usage \
1257         "ipaddr {add|del} IFADDR dev STRING\n" \
1258         "ipaddr {show|flush} [ dev STRING ] [ scope SCOPE-ID ]\n" \
1259         "                    [ to PREFIX ] [ label PATTERN ]\n" \
1260         "IFADDR := PREFIX | ADDR peer PREFIX\n" \
1261         "          [ broadcast ADDR ] [ anycast ADDR ]\n" \
1262         "          [ label STRING ] [ scope SCOPE-ID ]\n" \
1263         "SCOPE-ID := [ host | link | global | NUMBER ]\n"
1264
1265 #ifndef CONFIG_FEATURE_IPCALC_FANCY
1266 # define ipcalc_trivial_usage \
1267         "[--broadcast] [--netmask] [--network] ipaddr <netmask>"
1268
1269 # define ipcalc_full_usage \
1270         "Calculate IP network settings from a IP address\n\n" \
1271         "Options:\n" \
1272         "\t-b\t--broadcast\tDisplay calculated broadcast address.\n" \
1273         "\t-n\t--netmask\tDisplay default netmask for IP.\n" \
1274         "\t-w\t--network\tDisplay calculated network address." 
1275 #else
1276 # define ipcalc_trivial_usage \
1277         "[OPTION]... ipaddr <netmask>"
1278
1279 # define ipcalc_full_usage \
1280         "Calculate IP network settings from a IP address\n\n" \
1281         "Options:\n" \
1282         "\t-b\t--broadcast\tDisplay calculated broadcast address.\n" \
1283         "\t-n\t--netmask\tDisplay default netmask for IP.\n" \
1284         "\t-w\t--network\tDisplay calculated network address.\n" \
1285         "\t-h\t--hostname\tDisplay first resolved host name.\n" \
1286         "\t-s\t--silent\tDon't ever display error messages." 
1287 #endif
1288
1289 #define ipcalc_notes_usage \
1290         "ipcalc provides a simple way to calculate IP information for\n" \
1291         "a host. The various options specify what information ipcalc\n" \
1292         "should display on standard out. Multiple options may be\n" \
1293         "specified.\n"
1294
1295 #define iplink_trivial_usage \
1296         "{ set DEVICE { up | down | arp { on | off } | show [ DEVICE ] }"
1297 #define iplink_full_usage \
1298         "iplink set DEVICE { up | down | arp { on | off } |\n" \
1299         "                     dynamic { on | off } |\n" \
1300         "                     mtu MTU }\n" \
1301         "iplink show [ DEVICE ]\n"
1302
1303 #define iproute_trivial_usage \
1304         "{ list | flush | { add | del | change | append | replace | monitor } ROUTE }"
1305 #define iproute_full_usage \
1306         "iproute { list | flush } SELECTOR\n" \
1307         "iproute get ADDRESS [ from ADDRESS iif STRING ]\n" \
1308         "                     [ oif STRING ]  [ tos TOS ]\n" \
1309         "iproute { add | del | change | append | replace | monitor } ROUTE\n" \
1310         "SELECTOR := [ root PREFIX ] [ match PREFIX ] [ proto RTPROTO ]\n" \
1311         "ROUTE := [ TYPE ] PREFIX [ tos TOS ] [ proto RTPROTO ]\n"
1312
1313 #define iptunnel_trivial_usage \
1314         "{ add | change | del | show } [ NAME ] [ mode { ipip | gre | sit } ] [ remote ADDR ] [ local ADDR ] [ ttl TTL ]"
1315 #define iptunnel_full_usage \
1316         "iptunnel { add | change | del | show } [ NAME ]\n" \
1317         "          [ mode { ipip | gre | sit } ] [ remote ADDR ] [ local ADDR ]\n" \
1318         "          [ [i|o]seq ] [ [i|o]key KEY ] [ [i|o]csum ]\n" \
1319         "          [ ttl TTL ] [ tos TOS ] [ [no]pmtudisc ] [ dev PHYS_DEV ]\n"
1320
1321 #define kill_trivial_usage \
1322         "[-signal] process-id [process-id ...]"
1323 #define kill_full_usage \
1324         "Send a signal (default is SIGTERM) to the specified process(es).\n\n"\
1325         "Options:\n" \
1326         "\t-l\tList all signal names and numbers."
1327 #define kill_example_usage \
1328         "$ ps | grep apache\n" \
1329         "252 root     root     S [apache]\n" \
1330         "263 www-data www-data S [apache]\n" \
1331         "264 www-data www-data S [apache]\n" \
1332         "265 www-data www-data S [apache]\n" \
1333         "266 www-data www-data S [apache]\n" \
1334         "267 www-data www-data S [apache]\n" \
1335         "$ kill 252\n"
1336
1337 #define killall_trivial_usage \
1338         "[-signal] process-name [process-name ...]"
1339 #define killall_full_usage \
1340         "Send a signal (default is SIGTERM) to the specified process(es).\n\n"\
1341         "Options:\n" \
1342         "\t-l\tList all signal names and numbers."
1343 #define killall_example_usage \
1344         "$ killall apache\n" 
1345
1346 #define klogd_trivial_usage \
1347         "[-c n] [-n]"
1348 #define klogd_full_usage \
1349         "Kernel logger.\n"\
1350         "Options:\n"\
1351         "\t-c n\tSets the default log level of console messages to n.\n"\
1352         "\t-n\tRun as a foreground process."
1353
1354 #define length_trivial_usage \
1355         "STRING"
1356 #define length_full_usage \
1357         "Prints out the length of the specified STRING."
1358 #define length_example_usage \
1359         "$ length Hello\n" \
1360         "5\n"
1361
1362 #define ln_trivial_usage \
1363         "[OPTION] TARGET... LINK_NAME|DIRECTORY"
1364 #define ln_full_usage \
1365         "Create a link named LINK_NAME or DIRECTORY to the specified TARGET\n"\
1366         "\nYou may use '--' to indicate that all following arguments are non-options.\n\n" \
1367         "Options:\n" \
1368         "\t-s\tmake symbolic links instead of hard links\n" \
1369         "\t-f\tremove existing destination files\n" \
1370         "\t-n\tno dereference symlinks - treat like normal file"
1371 #define ln_example_usage \
1372         "$ ln -s BusyBox /tmp/ls\n" \
1373         "$ ls -l /tmp/ls\n" \
1374         "lrwxrwxrwx    1 root     root            7 Apr 12 18:39 ls -> BusyBox*\n" 
1375
1376 #define loadacm_trivial_usage \
1377         "< mapfile"
1378 #define loadacm_full_usage \
1379         "Loads an acm from standard input."
1380 #define loadacm_example_usage \
1381         "$ loadacm < /etc/i18n/acmname\n" 
1382
1383 #define loadfont_trivial_usage \
1384         "< font"
1385 #define loadfont_full_usage \
1386         "Loads a console font from standard input."
1387 #define loadfont_example_usage \
1388         "$ loadfont < /etc/i18n/fontname\n" 
1389
1390 #define loadkmap_trivial_usage \
1391         "< keymap"
1392 #define loadkmap_full_usage \
1393         "Loads a binary keyboard translation table from standard input."
1394 #define loadkmap_example_usage \
1395         "$ loadkmap < /etc/i18n/lang-keymap\n" 
1396
1397 #define logger_trivial_usage \
1398         "[OPTION]... [MESSAGE]"
1399 #define logger_full_usage \
1400         "Write MESSAGE to the system log.  If MESSAGE is omitted, log stdin.\n\n" \
1401         "Options:\n" \
1402         "\t-s\tLog to stderr as well as the system log.\n" \
1403         "\t-t\tLog using the specified tag (defaults to user name).\n" \
1404         "\t-p\tEnter the message with the specified priority.\n" \
1405         "\t\tThis may be numerical or a ``facility.level'' pair."
1406 #define logger_example_usage \
1407         "$ logger "hello"\n" 
1408
1409 #define login_trivial_usage \
1410         "[OPTION]... [username] [ENV=VAR ...]"
1411 #define login_full_usage \
1412         "Begin a new session on the system\n\n" \
1413         "Options:\n" \
1414         "\t-f\tDo not authenticate (user already authenticated)\n" \
1415         "\t-h\tName of the remote host for this login.\n" \
1416         "\t-p\tPreserve environment."
1417
1418 #define logname_trivial_usage \
1419         ""
1420 #define logname_full_usage \
1421         "Print the name of the current user."
1422 #define logname_example_usage \
1423         "$ logname\n" \
1424         "root\n" 
1425
1426 #define logread_trivial_usage \
1427         ""
1428
1429 #define logread_full_usage \
1430         "Shows the messages from syslogd (using circular buffer)."
1431
1432 #define losetup_trivial_usage \
1433         "[OPTION]... LOOPDEVICE FILE\n" \
1434         "or: losetup [OPTION]... -d LOOPDEVICE"
1435 #define losetup_full_usage \
1436         "Associate LOOPDEVICE with FILE.\n\n" \
1437         "Options:\n" \
1438         "\t-d\t\tDisassociate LOOPDEVICE.\n" \
1439         "\t-o OFFSET\tStart OFFSET bytes into FILE.\n"
1440
1441 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
1442   #define USAGE_LS_TIMESTAMPS(a) a
1443 #else
1444   #define USAGE_LS_TIMESTAMPS(a)
1445 #endif
1446 #ifdef CONFIG_FEATURE_LS_FILETYPES
1447   #define USAGE_LS_FILETYPES(a) a
1448 #else
1449   #define USAGE_LS_FILETYPES(a)
1450 #endif
1451 #ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
1452   #define USAGE_LS_FOLLOWLINKS(a) a
1453 #else
1454   #define USAGE_LS_FOLLOWLINKS(a)
1455 #endif
1456 #ifdef CONFIG_FEATURE_LS_RECURSIVE
1457   #define USAGE_LS_RECURSIVE(a) a
1458 #else
1459   #define USAGE_LS_RECURSIVE(a)
1460 #endif
1461 #ifdef CONFIG_FEATURE_LS_SORTFILES
1462   #define USAGE_LS_SORTFILES(a) a
1463 #else
1464   #define USAGE_LS_SORTFILES(a)
1465 #endif
1466 #ifdef CONFIG_FEATURE_AUTOWIDTH
1467   #define USAGE_AUTOWIDTH(a) a
1468 #else
1469   #define USAGE_AUTOWIDTH(a)
1470 #endif
1471 #define ls_trivial_usage \
1472         "[-1Aa" USAGE_LS_TIMESTAMPS("c") "Cd" USAGE_LS_TIMESTAMPS("e") USAGE_LS_FILETYPES("F") "iln" USAGE_LS_FILETYPES("p") USAGE_LS_FOLLOWLINKS("L") USAGE_LS_RECURSIVE("R") USAGE_LS_SORTFILES("rS") "s" USAGE_AUTOWIDTH("T") USAGE_LS_TIMESTAMPS("tu") USAGE_LS_SORTFILES("v") USAGE_AUTOWIDTH("w") "x" USAGE_LS_SORTFILES("X") USAGE_HUMAN_READABLE("h") USAGE_NOT_HUMAN_READABLE("") "k" USAGE_SELINUX("K", "") "] [filenames...]"
1473 #define ls_full_usage \
1474         "List directory contents\n\n" \
1475         "Options:\n" \
1476         "\t-1\tlist files in a single column\n" \
1477         "\t-A\tdo not list implied . and ..\n" \
1478         "\t-a\tdo not hide entries starting with .\n" \
1479         "\t-C\tlist entries by columns\n" \
1480         USAGE_LS_TIMESTAMPS("\t-c\twith -l: show ctime\n") \
1481         "\t-d\tlist directory entries instead of contents\n" \
1482         USAGE_LS_TIMESTAMPS("\t-e\tlist both full date and full time\n") \
1483         USAGE_LS_FILETYPES("\t-F\tappend indicator (one of */=@|) to entries\n") \
1484         "\t-i\tlist the i-node for each file\n" \
1485         "\t-l\tuse a long listing format\n" \
1486         "\t-n\tlist numeric UIDs and GIDs instead of names\n" \
1487         USAGE_LS_FILETYPES("\t-p\tappend indicator (one of /=@|) to entries\n") \
1488         USAGE_LS_FOLLOWLINKS("\t-L\tlist entries pointed to by symbolic links\n") \
1489         USAGE_LS_RECURSIVE("\t-R\tlist subdirectories recursively\n") \
1490         USAGE_LS_SORTFILES("\t-r\tsort the listing in reverse order\n") \
1491         USAGE_LS_SORTFILES("\t-S\tsort the listing by file size\n") \
1492         "\t-s\tlist the size of each file, in blocks\n" \
1493         USAGE_AUTOWIDTH("\t-T NUM\tassume Tabstop every NUM columns\n") \
1494         USAGE_LS_TIMESTAMPS("\t-t\twith -l: show modification time\n") \
1495         USAGE_LS_TIMESTAMPS("\t-u\twith -l: show access time\n") \
1496         USAGE_LS_SORTFILES("\t-v\tsort the listing by version\n") \
1497         USAGE_AUTOWIDTH("\t-w NUM\tassume the terminal is NUM columns wide\n") \
1498         "\t-x\tlist entries by lines instead of by columns\n" \
1499         USAGE_LS_SORTFILES("\t-X\tsort the listing by extension\n") \
1500         USAGE_HUMAN_READABLE( \
1501         "\t-h\tprint sizes in human readable format (e.g., 1K 243M 2G )\n" \
1502         USAGE_SELINUX("\t-k\tprint security context\n\t-K\tprint security context in long format\n", ""))
1503
1504 #define lsmod_trivial_usage \
1505         ""
1506 #define lsmod_full_usage \
1507         "List the currently loaded kernel modules."
1508
1509 #define makedevs_trivial_usage \
1510         "NAME TYPE MAJOR MINOR FIRST LAST [s]"
1511 #define makedevs_full_usage \
1512         "Creates a range of block or character special files\n\n" \
1513         "TYPEs include:\n" \
1514         "\tb:\tMake a block (buffered) device.\n" \
1515         "\tc or u:\tMake a character (un-buffered) device.\n" \
1516         "\tp:\tMake a named pipe. MAJOR and MINOR are ignored for named pipes.\n\n" \
1517         "FIRST specifies the number appended to NAME to create the first device.\n" \
1518         "LAST specifies the number of the last item that should be created.\n" \
1519         "If 's' is the last argument, the base device is created as well.\n\n" \
1520         "For example:\n" \
1521         "\tmakedevs /dev/ttyS c 4 66 2 63   ->  ttyS2-ttyS63\n" \
1522         "\tmakedevs /dev/hda b 3 0 0 8 s    ->  hda,hda1-hda8"
1523 #define makedevs_example_usage \
1524         "$ makedevs /dev/ttyS c 4 66 2 63\n" \
1525         "[creates ttyS2-ttyS63]\n" \
1526         "$ makedevs /dev/hda b 3 0 0 8 s\n" \
1527         "[creates hda,hda1-hda8]\n" 
1528
1529 #define md5sum_trivial_usage \
1530         "[OPTION] [FILE]...\n" \
1531         "or: md5sum [OPTION] -c [FILE]"
1532 #define md5sum_full_usage \
1533         "Print or check MD5 checksums.\n\n" \
1534         "Options:\n" \
1535         "With no FILE, or when FILE is -, read standard input.\n\n" \
1536         "\t-b\tread files in binary mode\n" \
1537         "\t-c\tcheck MD5 sums against given list\n" \
1538         "\t-t\tread files in text mode (default)\n" \
1539         "\t-g\tread a string\n" \
1540         "\nThe following two options are useful only when verifying checksums:\n" \
1541         "\t-s\tdon't output anything, status code shows success\n" \
1542         "\t-w\twarn about improperly formated MD5 checksum lines"
1543 #define md5sum_example_usage \
1544         "$ md5sum < busybox\n" \
1545         "6fd11e98b98a58f64ff3398d7b324003\n" \
1546         "$ md5sum busybox\n" \
1547         "6fd11e98b98a58f64ff3398d7b324003  busybox\n" \
1548         "$ md5sum -c -\n" \
1549         "6fd11e98b98a58f64ff3398d7b324003  busybox\n" \
1550         "busybox: OK\n" \
1551         "^D\n"
1552
1553 #define mesg_trivial_usage \
1554         "mesg [y|n]"
1555 #define mesg_full_usage \
1556         "mesg [Y|N], controls write access to your terminal\n" \
1557         "\ty\tAllow write access to your terminal.\n" \
1558         "\tn\tDisallow write access to your terminal.\n"
1559
1560 #define minit_trivial_usage \
1561         "[-spPrRC]"
1562 #define minit_full_usage \
1563         "[-spPrRC]"
1564
1565 #define mkdir_trivial_usage \
1566         "[OPTION] DIRECTORY..."
1567 #define mkdir_full_usage \
1568         "Create the DIRECTORY(ies) if they do not already exist\n\n" \
1569         "Options:\n" \
1570         "\t-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n" \
1571         "\t-p\tno error if existing, make parent directories as needed"
1572 #define mkdir_example_usage \
1573         "$ mkdir /tmp/foo\n" \
1574         "$ mkdir /tmp/foo\n" \
1575         "/tmp/foo: File exists\n" \
1576         "$ mkdir /tmp/foo/bar/baz\n" \
1577         "/tmp/foo/bar/baz: No such file or directory\n" \
1578         "$ mkdir -p /tmp/foo/bar/baz\n" 
1579
1580 #define mkfifo_trivial_usage \
1581         "[OPTIONS] name"
1582 #define mkfifo_full_usage \
1583         "Creates a named pipe (identical to 'mknod name p')\n\n" \
1584         "Options:\n" \
1585         "\t-m\tcreate the pipe using the specified mode (default a=rw)"
1586
1587 #define mkfs_minix_trivial_usage \
1588         "[-c | -l filename] [-nXX] [-iXX] /dev/name [blocks]"
1589 #define mkfs_minix_full_usage \
1590         "Make a MINIX filesystem.\n\n" \
1591         "Options:\n" \
1592         "\t-c\t\tCheck the device for bad blocks\n" \
1593         "\t-n [14|30]\tSpecify the maximum length of filenames\n" \
1594         "\t-i INODES\tSpecify the number of inodes for the filesystem\n" \
1595         "\t-l FILENAME\tRead the bad blocks list from FILENAME\n" \
1596         "\t-v\t\tMake a Minix version 2 filesystem"
1597
1598 #define mknod_trivial_usage \
1599         "[OPTIONS] NAME TYPE MAJOR MINOR"
1600 #define mknod_full_usage \
1601         "Create a special file (block, character, or pipe).\n\n" \
1602         "Options:\n" \
1603         "\t-m\tcreate the special file using the specified mode (default a=rw)\n\n" \
1604         "TYPEs include:\n" \
1605         "\tb:\tMake a block (buffered) device.\n" \
1606         "\tc or u:\tMake a character (un-buffered) device.\n" \
1607         "\tp:\tMake a named pipe. MAJOR and MINOR are ignored for named pipes."
1608 #define mknod_example_usage \
1609         "$ mknod /dev/fd0 b 2 0 \n" \
1610         "$ mknod -m 644 /tmp/pipe p\n" 
1611
1612 #define mkswap_trivial_usage \
1613         "[-c] [-v0|-v1] device [block-count]"
1614 #define mkswap_full_usage \
1615         "Prepare a disk partition to be used as a swap partition.\n\n" \
1616         "Options:\n" \
1617         "\t-c\t\tCheck for read-ability.\n" \
1618         "\t-v0\t\tMake version 0 swap [max 128 Megs].\n" \
1619         "\t-v1\t\tMake version 1 swap [big!] (default for kernels >\n\t\t\t2.1.117).\n" \
1620         "\tblock-count\tNumber of block to use (default is entire partition)."
1621
1622 #define mktemp_trivial_usage \
1623         "[-q] TEMPLATE"
1624 #define mktemp_full_usage \
1625         "Creates a temporary file with its name based on TEMPLATE.\n" \
1626         "TEMPLATE is any name with six `Xs' (i.e., /tmp/temp.XXXXXX)."
1627 #define mktemp_example_usage \
1628         "$ mktemp /tmp/temp.XXXXXX\n" \
1629         "/tmp/temp.mWiLjM\n" \
1630         "$ ls -la /tmp/temp.mWiLjM\n" \
1631         "-rw-------    1 andersen andersen        0 Apr 25 17:10 /tmp/temp.mWiLjM\n" 
1632
1633 #define modprobe_trivial_usage \
1634         "[FILE ...]"
1635 #define modprobe_full_usage \
1636         "Used for high level module loading and unloading."
1637 #define modprobe_example_usage \
1638         "$ modprobe cdrom\n" 
1639
1640 #define more_trivial_usage \
1641         "[FILE ...]"
1642 #define more_full_usage \
1643         "More is a filter for viewing FILE one screenful at a time."
1644 #define more_example_usage \
1645         "$ dmesg | more\n" 
1646
1647 #ifdef CONFIG_FEATURE_MOUNT_LOOP
1648   #define USAGE_MOUNT_LOOP(a) a
1649 #else
1650   #define USAGE_MOUNT_LOOP(a)
1651 #endif
1652 #ifdef CONFIG_FEATURE_MTAB_SUPPORT
1653   #define USAGE_MTAB(a) a
1654 #else
1655   #define USAGE_MTAB(a)
1656 #endif
1657 #define mount_trivial_usage \
1658         "[flags] DEVICE NODE [-o options,more-options]"
1659 #define mount_full_usage \
1660         "Mount a filesystem\n\n" \
1661         "Flags:\n"  \
1662         "\t-a:\t\tMount all filesystems in fstab.\n" \
1663         USAGE_MTAB( \
1664         "\t-f:\t\t\"Fake\" Add entry to mount table but don't mount it.\n" \
1665         "\t-n:\t\tDon't write a mount table entry.\n" \
1666         ) \
1667         "\t-o option:\tOne of many filesystem options, listed below.\n" \
1668         "\t-r:\t\tMount the filesystem read-only.\n" \
1669         "\t-t fs-type:\tSpecify the filesystem type.\n" \
1670         "\t-w:\t\tMount for reading and writing (default).\n" \
1671         "\n" \
1672         "Options for use with the \"-o\" flag:\n" \
1673         "\tasync/sync:\tWrites are asynchronous / synchronous.\n" \
1674         "\tatime/noatime:\tEnable / disable updates to inode access times.\n" \
1675         "\tdev/nodev:\tAllow use of special device files / disallow them.\n" \
1676         "\texec/noexec:\tAllow use of executable files / disallow them.\n" \
1677         USAGE_MOUNT_LOOP( \
1678         "\tloop:\t\tMounts a file via loop device.\n" \
1679         ) \
1680         "\tsuid/nosuid:\tAllow set-user-id-root programs / disallow them.\n" \
1681         "\tremount:\tRe-mount a mounted filesystem, changing its flags.\n" \
1682         "\tro/rw:\t\tMount for read-only / read-write.\n" \
1683         "\tbind:\t\tUse the linux 2.4.x \"bind\" feature.\n" \
1684         "\nThere are EVEN MORE flags that are specific to each filesystem.\n" \
1685         "You'll have to see the written documentation for those filesystems."
1686 #define mount_example_usage \
1687         "$ mount\n" \
1688         "/dev/hda3 on / type minix (rw)\n" \
1689         "proc on /proc type proc (rw)\n" \
1690         "devpts on /dev/pts type devpts (rw)\n" \
1691         "$ mount /dev/fd0 /mnt -t msdos -o ro\n" \
1692         "$ mount /tmp/diskimage /opt -t ext2 -o loop\n" 
1693
1694 #define msvc_trivial_usage \
1695         "-[udorspchaitkx] service"
1696 #define msvc_full_usage \
1697         "[option] service\n" \
1698         "Where option is one of\n" \
1699         "\t-u\tUp.  If the service is not running, start it.  If the service stops, restart it.\n" \
1700         "\t-d\tDown.  If the service is running, stop it, do not restart it.\n" \
1701         "\t-o\tOnce.  If the service is not running, start it.  Do not restart it if it stops.\n" \
1702         "\t-r\tTell supervise that the service is normally running; this affects status messages.\n" \
1703         "\t-s\tTell supervise that the service is normally stopped; this affects status messages.\n" \
1704         "\t-p\tPause.  Send the service a STOP signal.\n" \
1705         "\t-c\tContinue.  Send the service a CONT signal.\n" \
1706         "\t-h\tHangup.  Send the service a HUP signal.\n" \
1707         "\t-a\tAlarm.  Send the service an ALRM signal.\n" \
1708         "\t-i\tInterrupt.  Send the service an INT signal.\n" \
1709         "\t-t\tTerminate.  Send the service a TERM signal.\n" \
1710         "\t-k\tKill.  Send the service a KILL signal.\n" \
1711         "\t-x\tExit.  supervise will quit as soon as the service is down.\n"
1712
1713 #define mt_trivial_usage \
1714         "[-f device] opcode value"
1715 #define mt_full_usage \
1716         "Control magnetic tape drive operation\n" \
1717         "\nAvailable Opcodes:\n\n" \
1718         "bsf bsfm bsr bss datacompression drvbuffer eof eom erase\n" \
1719         "fsf fsfm fsr fss load lock mkpart nop offline ras1 ras2\n" \
1720         "ras3 reset retension rew rewoffline seek setblk setdensity\n" \
1721         "setpart tell unload unlock weof wset"
1722
1723 #define mv_trivial_usage \
1724         "SOURCE DEST\n" \
1725         "or: mv SOURCE... DIRECTORY"
1726 #define mv_full_usage \
1727         "Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY."
1728 #define mv_example_usage \
1729         "$ mv /tmp/foo /bin/bar\n" 
1730
1731 #define nameif_trivial_usage \
1732         "[-s] [-c FILE] [{IFNAME MACADDR}]"
1733 #define nameif_full_usage \
1734                 "Nameif renaming network interface while it in the down state.\n\n" \
1735                 "Options:\n" \
1736                 "\t-c FILE\t\tUse configuration file (default is /etc/mactab)\n" \
1737                 "\t-s\t\tUse syslog (LOCAL0 facility).\n" \
1738                 "\tIFNAME MACADDR\tnew_interface_name interface_mac_address\n" 
1739 #define nameif_example_usage \
1740                 "$ nameif -s dmz0 00:A0:C9:8C:F6:3F\n" \
1741                 " or\n" \
1742                 "$ nameif -c /etc/my_mactab_file\n" \
1743
1744 #define nc_trivial_usage \
1745         "[OPTIONS] [IP] [port]" 
1746 #define nc_full_usage \
1747         "Netcat opens a pipe to IP:port\n\n" \
1748         "Options:\n" \
1749         "\t-l\t\tlisten mode, for inbound connects\n" \
1750         "\t-p PORT\t\tlocal port number\n" \
1751         "\t-i SECS\t\tdelay interval for lines sent\n" \
1752         "\t-e PROG\t\tprogram to exec after connect (dangerous!)"
1753 #define nc_example_usage \
1754         "$ nc foobar.somedomain.com 25\n" \
1755         "220 foobar ESMTP Exim 3.12 #1 Sat, 15 Apr 2000 00:03:02 -0600\n" \
1756         "help\n" \
1757         "214-Commands supported:\n" \
1758         "214-    HELO EHLO MAIL RCPT DATA AUTH\n" \
1759         "214     NOOP QUIT RSET HELP\n" \
1760         "quit\n" \
1761         "221 foobar closing connection\n" 
1762
1763 #define netstat_trivial_usage \
1764         "[-laenrtuwx]"
1765 #define netstat_full_usage \
1766         "-l display listening server sockets\n" \
1767         "-a display all sockets (default: connected)\n" \
1768         "-e display other/more information\n" \
1769         "-n don't resolve names\n" \
1770         "-r display routing table\n" \
1771         "-t tcp sockets\n" \
1772         "-u udp sockets\n" \
1773         "-w raw sockets\n" \
1774         "-x unix sockets\n"
1775
1776 #define nslookup_trivial_usage \
1777         "[HOST] [SERVER]"
1778 #define nslookup_full_usage \
1779         "Queries the nameserver for the IP address of the given HOST\n" \
1780         "optionally using a specified DNS server"
1781 #define nslookup_example_usage \
1782         "$ nslookup localhost\n" \
1783         "Server:     default\n" \
1784         "Address:    default\n" \
1785         "\n" \
1786         "Name:       debian\n" \
1787         "Address:    127.0.0.1\n" 
1788
1789 #define od_trivial_usage \
1790         "[-aBbcDdeFfHhIiLlOovXx] [FILE]"
1791 #define od_full_usage \
1792         "Write an unambiguous representation, octal bytes by default, of FILE\n"\
1793         "to standard output.  With no FILE, or when FILE is -, read standard input."
1794
1795 #define openvt_trivial_usage \
1796         "<vtnum> <COMMAND> [ARGS...]"
1797 #define openvt_full_usage \
1798         "Start a command on a new virtual terminal"
1799 #define openvt_example_usage \
1800         "openvt 2 /bin/ash\n"
1801
1802 #ifdef CONFIG_FEATURE_SHA1_PASSWORDS
1803   #define PASSWORD_ALG_TYPES(a) a
1804 #else   
1805   #define PASSWORD_ALG_TYPES(a)
1806 #endif
1807 #define passwd_trivial_usage \
1808         "[OPTION] [name]"
1809 #define passwd_full_usage \
1810         "Change a user password. If no name is specified,\n" \
1811         "changes the password for the current user.\n" \
1812         "Options:\n" \
1813         "\t-a\tDefine which algorithm shall be used for the password.\n" \
1814         "\t\t\t(Choices: des, md5" \
1815         PASSWORD_ALG_TYPES(", sha1") \
1816         ")\n\t-d\tDelete the password for the specified user account.\n" \
1817         "\t-l\tLocks (disables) the specified user account.\n" \
1818         "\t-u\tUnlocks (re-enables) the specified user account."
1819
1820 #define patch_trivial_usage \
1821         "[-p<num>]"
1822 #define patch_full_usage \
1823         "[-p<num>]"
1824 #define patch_example_usage \
1825         "$ patch -p1 <example.diff"
1826
1827 #define pidfilehack_trivial_usage \
1828         "[daemon.pid] [daemon]"
1829 #define pidfilehack_full_usage \
1830         "service /var/run/daemon.pid /usr/sbin/daemon args...\n"
1831
1832 #define pidof_trivial_usage \
1833         "process-name [process-name ...]"
1834 #define pidof_full_usage \
1835         "Lists the PIDs of all processes with names that match the names on the command line"
1836 #define pidof_example_usage \
1837         "$ pidof init\n" \
1838         "1\n"
1839
1840 #ifndef CONFIG_FEATURE_FANCY_PING
1841 #define ping_trivial_usage "host"
1842 #define ping_full_usage    "Send ICMP ECHO_REQUEST packets to network hosts"
1843 #else
1844 #define ping_trivial_usage \
1845         "[OPTION]... host"
1846 #define ping_full_usage \
1847         "Send ICMP ECHO_REQUEST packets to network hosts.\n\n" \
1848         "Options:\n" \
1849         "\t-c COUNT\tSend only COUNT pings.\n" \
1850         "\t-s SIZE\t\tSend SIZE data bytes in packets (default=56).\n" \
1851         "\t-q\t\tQuiet mode, only displays output at start\n" \
1852         "\t\t\tand when finished."
1853 #endif
1854 #define ping_example_usage \
1855         "$ ping localhost\n" \
1856         "PING slag (127.0.0.1): 56 data bytes\n" \
1857         "64 bytes from 127.0.0.1: icmp_seq=0 ttl=255 time=20.1 ms\n" \
1858         "\n" \
1859         "--- debian ping statistics ---\n" \
1860         "1 packets transmitted, 1 packets received, 0% packet loss\n" \
1861         "round-trip min/avg/max = 20.1/20.1/20.1 ms\n" 
1862
1863 #ifndef CONFIG_FEATURE_FANCY_PING6
1864 #define ping6_trivial_usage "host"
1865 #define ping6_full_usage    "Send ICMP ECHO_REQUEST packets to network hosts"
1866 #else
1867 #define ping6_trivial_usage \
1868         "[OPTION]... host"
1869 #define ping6_full_usage \
1870         "Send ICMP ECHO_REQUEST packets to network hosts.\n\n" \
1871         "Options:\n" \
1872         "\t-c COUNT\tSend only COUNT pings.\n" \
1873         "\t-s SIZE\t\tSend SIZE data bytes in packets (default=56).\n" \
1874         "\t-q\t\tQuiet mode, only displays output at start\n" \
1875         "\t\t\tand when finished."
1876 #endif
1877 #define ping6_example_usage \
1878         "$ ping6 ip6-localhost\n" \
1879         "PING ip6-localhost (::1): 56 data bytes\n" \
1880         "64 bytes from ::1: icmp6_seq=0 ttl=64 time=20.1 ms\n" \
1881         "\n" \
1882         "--- ip6-localhost ping statistics ---\n" \
1883         "1 packets transmitted, 1 packets received, 0% packet loss\n" \
1884         "round-trip min/avg/max = 20.1/20.1/20.1 ms\n" 
1885
1886 #define pivot_root_trivial_usage \
1887         "NEW_ROOT PUT_OLD"
1888 #define pivot_root_full_usage \
1889         "Move the current root file system to PUT_OLD and make NEW_ROOT\n" \
1890         "the new root file system."
1891
1892 #define poweroff_trivial_usage \
1893         ""
1894 #define poweroff_full_usage \
1895         "Halt the system and request that the kernel shut off the power."
1896
1897 #define printf_trivial_usage \
1898         "FORMAT [ARGUMENT...]"
1899 #define printf_full_usage \
1900         "Formats and prints ARGUMENT(s) according to FORMAT,\n" \
1901         "Where FORMAT controls the output exactly as in C printf."
1902 #define printf_example_usage \
1903         "$ printf "Val=%d\\n" 5\n" \
1904         "Val=5\n" 
1905
1906 #define ps_trivial_usage \
1907         ""
1908 #define ps_full_usage \
1909         "Report process status\n" \
1910         USAGE_SELINUX("\nOptions:\n\t-c\tshow SE Linux context", "\nThis version of ps accepts no options.")
1911  
1912 #define ps_example_usage \
1913         "$ ps\n" \
1914         "  PID  Uid      Gid State Command\n" \
1915         "    1 root     root     S init\n" \
1916         "    2 root     root     S [kflushd]\n" \
1917         "    3 root     root     S [kupdate]\n" \
1918         "    4 root     root     S [kpiod]\n" \
1919         "    5 root     root     S [kswapd]\n" \
1920         "  742 andersen andersen S [bash]\n" \
1921         "  743 andersen andersen S -bash\n" \
1922         "  745 root     root     S [getty]\n" \
1923         " 2990 andersen andersen R ps\n"
1924
1925 #define pwd_trivial_usage \
1926         ""
1927 #define pwd_full_usage \
1928         "Print the full filename of the current working directory."
1929 #define pwd_example_usage \
1930         "$ pwd\n" \
1931         "/root\n"
1932
1933 #define rdate_trivial_usage \
1934         "[-sp] HOST"
1935 #define rdate_full_usage \
1936         "Get and possibly set the system date and time from a remote HOST.\n\n" \
1937         "Options:\n" \
1938         "\t-s\tSet the system date and time (default).\n" \
1939         "\t-p\tPrint the date and time."
1940
1941 #define readlink_trivial_usage \
1942         ""
1943 #define readlink_full_usage \
1944         "Read a symbolic link."
1945
1946 #define realpath_trivial_usage \
1947         "pathname  ..."
1948 #define realpath_full_usage \
1949         "return the canonicalized absolute pathnames of given arguments\n\n"
1950         
1951 #define reboot_trivial_usage \
1952         ""
1953 #define reboot_full_usage \
1954         "Reboot the system."
1955
1956 #define renice_trivial_usage \
1957         "priority pid [pid ...]"
1958 #define renice_full_usage \
1959         "Changes priority of running processes. Allowed priorities range\n" \
1960         "from 20 (the process runs only when nothing else is running) to 0\n" \
1961         "(default priority) to -20 (almost nothing else ever gets to run)."
1962
1963 #define reset_trivial_usage \
1964         ""
1965 #define reset_full_usage \
1966         "Resets the screen."
1967
1968 #define rm_trivial_usage \
1969         "[OPTION]... FILE..."
1970 #define rm_full_usage \
1971         "Remove (unlink) the FILE(s).  You may use '--' to\n" \
1972         "indicate that all following arguments are non-options.\n\n" \
1973         "Options:\n" \
1974         "\t-i\t\talways prompt before removing each destination\n" \
1975         "\t-f\t\tremove existing destinations, never prompt\n" \
1976         "\t-r or -R\tremove the contents of directories recursively"
1977 #define rm_example_usage \
1978         "$ rm -rf /tmp/foo\n"
1979
1980 #define rmdir_trivial_usage \
1981         "[OPTION]... DIRECTORY..."
1982 #define rmdir_full_usage \
1983         "Remove the DIRECTORY(ies), if they are empty."
1984 #define rmdir_example_usage \
1985         "# rmdir /tmp/foo\n"
1986
1987 #define rmmod_trivial_usage \
1988         "[OPTION]... [MODULE]..."
1989 #define rmmod_full_usage \
1990         "Unloads the specified kernel modules from the kernel.\n\n" \
1991         "Options:\n" \
1992         "\t-a\tRemove all unused modules (recursively)"
1993 #define rmmod_example_usage \
1994         "$ rmmod tulip\n"
1995
1996 #define route_trivial_usage \
1997         "[{add|del|flush}]"
1998 #define route_full_usage \
1999         "Edit the kernel's routing tables.\n\n" \
2000         "Options:\n" \
2001         "\t-n\tDont resolve names.\n" \
2002         "\t-e\tDisplay other/more information"
2003
2004 #define rpm_trivial_usage \
2005         "-i -q[ildc]p package.rpm"
2006 #define rpm_full_usage \
2007         "Manipulates RPM packages" \
2008         "\n\nOptions:" \
2009         "\n\t-i Install package" \
2010         "\n\t-q Query package" \
2011         "\n\t-p Query uninstalled package" \
2012         "\n\t-i Show information" \
2013         "\n\t-l List contents" \
2014         "\n\t-d List documents" \
2015         "\n\t-c List config files"
2016
2017 #define rpm2cpio_trivial_usage \
2018         "package.rpm"
2019 #define rpm2cpio_full_usage \
2020         "Outputs a cpio archive of the rpm file."
2021
2022 #define run_parts_trivial_usage \
2023         "[-t] [-a ARG] [-u MASK] DIRECTORY"
2024 #define run_parts_full_usage \
2025         "Run a bunch of scripts in a directory.\n\n" \
2026         "Options:\n" \
2027         "\t-t\t\tTest only what file will be executed, without execute them.\n" \
2028         "\t-a ARG\tPass ARG as an argument for every program invoked.\n" \
2029         "\t-u MASK\tSet the umask to MASK before executing every program."
2030
2031 #define sed_trivial_usage \
2032         "[-nef] pattern [files...]"
2033 #define sed_full_usage \
2034         "Options:\n" \
2035         "\t-n\t\tsuppress automatic printing of pattern space\n" \
2036         "\t-e script\tadd the script to the commands to be executed\n" \
2037         "\t-f scriptfile\tadd the contents of script-file to the commands to be executed\n" \
2038         "\n" \
2039         "If no -e or -f is given, the first non-option argument is taken as the\n" \
2040         "sed script to interpret. All remaining arguments are names of input\n" \
2041         "files; if no input files are specified, then the standard input is read."
2042 #define sed_example_usage \
2043         "$ echo "foo" | sed -e 's/f[a-zA-Z]o/bar/g'\n" \
2044         "bar\n"
2045
2046 #define setkeycodes_trivial_usage \
2047         "SCANCODE KEYCODE ..."
2048 #define setkeycodes_full_usage \
2049         "Set entries into the kernel's scancode-to-keycode map,\n" \
2050         "allowing unusual keyboards to generate usable keycodes.\n\n" \
2051         "SCANCODE may be either xx or e0xx (hexadecimal),\n" \
2052         "and KEYCODE is given in decimal"
2053 #define setkeycodes_example_usage \
2054         "$ setkeycodes e030 127\n"
2055
2056 #define lash_trivial_usage \
2057         "[FILE]...\n" \
2058         "or: sh -c command [args]..."
2059 #define lash_full_usage \
2060         "lash: The BusyBox LAme SHell (command interpreter)"
2061 #define lash_notes_usage \
2062 "This command does not yet have proper documentation.\n" \
2063 "\n" \
2064 "Use lash just as you would use any other shell.  It properly handles pipes,\n" \
2065 "redirects, job control, can be used as the shell for scripts, and has a\n" \
2066 "sufficient set of builtins to do what is needed.  It does not (yet) support\n" \
2067 "Bourne Shell syntax.  If you need things like "if-then-else", "while", and such\n" \
2068 "use ash or bash.  If you just need a very simple and extremely small shell,\n" \
2069 "this will do the job."
2070
2071 #define sha1sum_trivial_usage \
2072         "[OPTION] [FILE]"
2073 #define sha1sum_full_usage \
2074         "[OPTION] [FILE]"
2075
2076 #ifdef CONFIG_FEATURE_FANCY_SLEEP
2077   #define USAGE_FANCY_SLEEP(a) a
2078   #define USAGE_NOT_FANCY_SLEEP(a)
2079 #else
2080   #define USAGE_FANCY_SLEEP(a) 
2081   #define USAGE_NOT_FANCY_SLEEP(a) a
2082 #endif
2083
2084 #define sleep_trivial_usage \
2085         USAGE_FANCY_SLEEP("[") "N" USAGE_FANCY_SLEEP("]...") 
2086 #define sleep_full_usage \
2087         USAGE_NOT_FANCY_SLEEP("Pause for N seconds.") \
2088         USAGE_FANCY_SLEEP( \
2089 "Pause for a time equal to the total of the args given, where each arg can\n" \
2090 "have an optional suffix of (s)econds, (m)inutes, (h)ours, or (d)ays.")
2091 #define sleep_example_usage \
2092         "$ sleep 2\n" \
2093         "[2 second delay results]\n" \
2094         USAGE_FANCY_SLEEP("$ sleep 1d 3h 22m 8s\n" \
2095         "[98528 second delay results]\n")
2096
2097 #ifdef CONFIG_FEATURE_SORT_UNIQUE
2098   #define USAGE_SORT_UNIQUE(a) a
2099 #else
2100   #define USAGE_SORT_UNIQUE(a)
2101 #endif
2102 #ifdef CONFIG_FEATURE_SORT_REVERSE
2103   #define USAGE_SORT_REVERSE(a) a
2104 #else
2105   #define USAGE_SORT_REVERSE(a)
2106 #endif
2107 #define sort_trivial_usage \
2108         "[-n" USAGE_SORT_REVERSE("r") USAGE_SORT_UNIQUE("u") "] [FILE]..."
2109 #define sort_full_usage \
2110         "Sorts lines of text in the specified files\n\n"\
2111         "Options:\n" \
2112         USAGE_SORT_UNIQUE("\t-u\tsuppress duplicate lines\n") \
2113         USAGE_SORT_REVERSE("\t-r\tsort in reverse order\n") \
2114         "\t-n\tsort numerics"
2115 #define sort_example_usage \
2116         "$ echo -e \"e\\nf\\nb\\nd\\nc\\na\" | sort\n" \
2117         "a\n" \
2118         "b\n" \
2119         "c\n" \
2120         "d\n" \
2121         "e\n" \
2122         "f\n"
2123
2124 #define start_stop_daemon_trivial_usage \
2125         "[OPTIONS]"
2126 #define start_stop_daemon_full_usage \
2127         "Program to start and stop services.\n"\
2128         "Options:\n" \
2129         "-S\t\t\tstart\n"\
2130         "-K\t\t\tstop\n"\
2131         "-b\t\t\tforce process into background (daemonize)\n"\
2132         "-x <executable>\t\tprogram to start/check if it is running\n"\
2133         "-u <username>|<uid>\tstop this user's processes\n"\
2134         "-n <process-name>\tstop processes with this name\n"\
2135         "-s <signal>\t\tsignal to send (default 15)\n"\
2136         "-a <pathname>\t\tprogram to start (default <executable>)\n"
2137
2138 #define strings_trivial_usage \
2139     "[-afo] [-n length] [file ... ]"
2140 #define strings_full_usage \
2141     "Display printable strings in a binary file." \
2142     "\n\nOptions:" \
2143     "\n\t-f\tPrecede each string with the name of the file where it was found." \
2144     "\n\t-n N\tSpecifies that at least N characters forms a sequence (default 4)" \
2145     "\n\t-o\tEach string is preceded by its decimal offset in the file."
2146
2147 #define stty_trivial_usage \
2148         "[-a|g] [-F DEVICE] [SETTING]..."
2149 #define stty_full_usage \
2150         "Without arguments, prints baud rate, line discipline," \
2151         "\nand deviations from stty sane." \
2152         "\n\nOptions:" \
2153         "\n\t-F DEVICE\topen device instead of stdin" \
2154         "\n\t-a\t\tprint all current settings in human-readable form" \
2155         "\n\t-g\t\tprint in stty-readable form" \
2156         "\n\t[SETTING]\tsee manpage"
2157
2158 #define su_trivial_usage \
2159         "[OPTION]... [-] [username]"
2160 #define su_full_usage \
2161         "Change user id or become root.\n" \
2162         "Options:\n" \
2163         "\t-p\tPreserve environment"
2164
2165 #define sulogin_trivial_usage \
2166         "[OPTION]... [tty-device]"
2167 #define sulogin_full_usage \
2168         "Single user login\n" \
2169         "Options:\n" \
2170         "\t-f\tDo not authenticate (user already authenticated)\n" \
2171         "\t-h\tName of the remote host for this login.\n" \
2172         "\t-p\tPreserve environment."
2173
2174 #define swapoff_trivial_usage \
2175         "[OPTION] [DEVICE]"
2176 #define swapoff_full_usage \
2177         "Stop swapping virtual memory pages on DEVICE.\n\n" \
2178         "Options:\n" \
2179         "\t-a\tStop swapping on all swap devices"
2180
2181 #define swapon_trivial_usage \
2182         "[OPTION] [DEVICE]"
2183 #define swapon_full_usage \
2184         "Start swapping virtual memory pages on DEVICE.\n\n" \
2185         "Options:\n" \
2186         "\t-a\tStart swapping on all swap devices"
2187
2188 #define sync_trivial_usage \
2189         ""
2190 #define sync_full_usage \
2191         "Write all buffered filesystem blocks to disk."
2192
2193
2194 #ifdef CONFIG_FEATURE_REMOTE_LOG
2195   #define USAGE_REMOTE_LOG(a) a
2196 #else
2197   #define USAGE_REMOTE_LOG(a)
2198 #endif
2199 #ifdef CONFIG_FEATURE_IPC_SYSLOG
2200   #define USAGE_IPC_LOG(a) a
2201 #else
2202   #define USAGE_IPC_LOG(a)
2203 #endif
2204
2205 #define syslogd_trivial_usage \
2206         "[OPTION]..."
2207 #define syslogd_full_usage \
2208         "Linux system and kernel logging utility.\n" \
2209         "Note that this version of syslogd ignores /etc/syslog.conf.\n\n" \
2210         "Options:\n" \
2211         "\t-m NUM\t\tInterval between MARK lines (default=20min, 0=off)\n" \
2212         "\t-n\t\tRun as a foreground process\n" \
2213         "\t-O FILE\t\tUse an alternate log file (default=/var/log/messages)" \
2214         USAGE_REMOTE_LOG( \
2215         "\n\t-R HOST[:PORT]\tLog to IP or hostname on PORT (default PORT=514/UDP)\n" \
2216         "\t-L\t\tLog locally and via network logging (default is network only)") \
2217         USAGE_IPC_LOG( \
2218         "\n\t-C\t\tLog to a circular buffer (read the buffer using logread)")
2219 #define syslogd_example_usage \
2220         "$ syslogd -R masterlog:514\n" \
2221         "$ syslogd -R 192.168.1.1:601\n"
2222
2223
2224 #ifndef CONFIG_FEATURE_FANCY_TAIL
2225   #define USAGE_UNSIMPLE_TAIL(a)
2226 #else
2227   #define USAGE_UNSIMPLE_TAIL(a) a
2228 #endif
2229 #define tail_trivial_usage \
2230         "[OPTION]... [FILE]..."
2231 #define tail_full_usage \
2232         "Print last 10 lines of each FILE to standard output.\n" \
2233         "With more than one FILE, precede each with a header giving the\n" \
2234         "file name. With no FILE, or when FILE is -, read standard input.\n\n" \
2235         "Options:\n" \
2236         USAGE_UNSIMPLE_TAIL("\t-c N[kbm]\toutput the last N bytes\n") \
2237         "\t-n N[kbm]\tprint last N lines instead of last 10\n" \
2238         "\t-f\t\toutput data as the file grows" \
2239         USAGE_UNSIMPLE_TAIL( "\n\t-q\t\tnever output headers giving file names\n" \
2240         "\t-s SEC\t\twait SEC seconds between reads with -f\n" \
2241         "\t-v\t\talways output headers giving file names\n\n" \
2242         "If the first character of N (bytes or lines) is a '+', output begins with \n" \
2243         "the Nth item from the start of each file, otherwise, print the last N items\n" \
2244         "in the file. N bytes may be suffixed by k (x1024), b (x512), or m (1024^2)." )
2245 #define tail_example_usage \
2246         "$ tail -n 1 /etc/resolv.conf\n" \
2247         "nameserver 10.0.0.1\n"
2248
2249 #ifdef CONFIG_FEATURE_TAR_CREATE
2250   #define USAGE_TAR_CREATE(a) a
2251 #else
2252   #define USAGE_TAR_CREATE(a)
2253 #endif
2254 #ifdef CONFIG_FEATURE_TAR_EXCLUDE
2255   #define USAGE_TAR_EXCLUDE(a) a
2256 #else
2257   #define USAGE_TAR_EXCLUDE(a)
2258 #endif
2259 #ifdef CONFIG_FEATURE_TAR_GZIP
2260   #define USAGE_TAR_GZIP(a) a
2261 #else
2262   #define USAGE_TAR_GZIP(a)
2263 #endif
2264 #ifdef CONFIG_FEATURE_TAR_BZIP2
2265   #define USAGE_TAR_BZIP2(a) a
2266 #else
2267   #define USAGE_TAR_BZIP2(a)
2268 #endif
2269
2270 #define tar_trivial_usage \
2271         "-[" USAGE_TAR_CREATE("c") USAGE_TAR_GZIP("z") USAGE_TAR_BZIP2("j") "xtvO] " \
2272         USAGE_TAR_EXCLUDE("[--exclude FILE] [-X FILE]") \
2273         "[-f TARFILE] [-C DIR] [FILE(s)] ..."
2274 #define tar_full_usage \
2275         "Create, extract, or list files from a tar file.\n\n" \
2276         "Options:\n" \
2277         USAGE_TAR_CREATE("\tc\t\tcreate\n") \
2278         "\tx\t\textract\n" \
2279         "\tt\t\tlist\n" \
2280         "\nArchive format selection:\n" \
2281         USAGE_TAR_GZIP("\tz\t\tFilter the archive through gzip\n") \
2282         USAGE_TAR_BZIP2("\tj\t\tFilter the archive through bzip2\n") \
2283         "\nFile selection:\n" \
2284         "\tf\t\tname of TARFILE or \"-\" for stdin\n" \
2285         "\tO\t\textract to stdout\n" \
2286         USAGE_TAR_EXCLUDE( \
2287         "\texclude\t\tfile to exclude\n" \
2288          "\tX\t\tfile with names to exclude\n" \
2289         ) \
2290         "\tC\t\tchange to directory DIR before operation\n" \
2291         "\tv\t\tverbosely list files processed"
2292 #define tar_example_usage \
2293         "$ zcat /tmp/tarball.tar.gz | tar -xf -\n" \
2294         "$ tar -cf /tmp/tarball.tar /usr/local\n"
2295
2296 #define tee_trivial_usage \
2297         "[OPTION]... [FILE]..."
2298 #define tee_full_usage \
2299         "Copy standard input to each FILE, and also to standard output.\n\n" \
2300         "Options:\n" \
2301         "\t-a\tappend to the given FILEs, do not overwrite\n" \
2302         "\t-i\tignore interrupt signals (SIGINT)"
2303 #define tee_example_usage \
2304         "$ echo "Hello" | tee /tmp/foo\n" \
2305         "$ cat /tmp/foo\n" \
2306         "Hello\n"
2307
2308 #define telnet_trivial_usage \
2309         "HOST [PORT]"
2310 #define telnet_full_usage \
2311         "Telnet is used to establish interactive communication with another\n"\
2312         "computer over a network using the TELNET protocol."
2313
2314 #ifdef CONFIG_FEATURE_TELNETD_INETD
2315 #define telnetd_trivial_usage \
2316         "(inetd mode) [OPTION]"
2317 #define telnetd_full_usage \
2318         "Telnetd uses incoming TELNET connections via inetd.\n"\
2319         "Options:\n" \
2320         "\t-l LOGIN\texec LOGIN on connect (default /bin/sh)"
2321 #else
2322 #define telnetd_trivial_usage \
2323         "[OPTION]"
2324 #define telnetd_full_usage \
2325         "Telnetd listens for incoming TELNET connections on PORT.\n"\
2326         "Options:\n" \
2327         "\t-p PORT\tlisten for connections on PORT (default 23)\n"\
2328         "\t-l LOGIN\texec LOGIN on connect (default /bin/sh)"
2329 #endif
2330
2331 #define test_trivial_usage \
2332         "EXPRESSION\n  or   [ EXPRESSION ]"
2333 #define test_full_usage \
2334         "Checks file types and compares values returning an exit\n" \
2335         "code determined by the value of EXPRESSION."
2336 #define test_example_usage \
2337         "$ test 1 -eq 2\n" \
2338         "$ echo $?\n" \
2339         "1\n" \
2340         "$ test 1 -eq 1\n" \
2341         "$ echo $? \n" \
2342         "0\n" \
2343         "$ [ -d /etc ]\n" \
2344         "$ echo $?\n" \
2345         "0\n" \
2346         "$ [ -d /junk ]\n" \
2347         "$ echo $?\n" \
2348         "1\n"
2349
2350 #ifdef CONFIG_FEATURE_TFTP_GET
2351   #define USAGE_TFTP_GET(a) a
2352 #else
2353   #define USAGE_TFTP_GET(a)
2354 #endif
2355 #ifdef CONFIG_FEATURE_TFTP_PUT
2356   #define USAGE_TFTP_PUT(a) a
2357 #else
2358   #define USAGE_TFTP_PUT(a)
2359 #endif
2360 #ifdef CONFIG_FEATURE_TFTP_BLOCKSIZE
2361   #define USAGE_TFTP_BS(a) a
2362 #else
2363   #define USAGE_TFTP_BS(a)
2364 #endif
2365
2366 #define tftp_trivial_usage \
2367         "[OPTION]... HOST [PORT]"
2368 #define tftp_full_usage \
2369         "Transfers a file from/to a tftp server using \"octet\" mode.\n\n" \
2370         "Options:\n" \
2371         "\t-l FILE\tLocal FILE.\n" \
2372         "\t-r FILE\tRemote FILE.\n" \
2373         USAGE_TFTP_GET( \
2374         "\t-g\tGet file.\n" \
2375         ) \
2376         USAGE_TFTP_PUT( \
2377         "\t-p\tPut file.\n" \
2378         ) \
2379         USAGE_TFTP_BS( \
2380         "\t-b SIZE\tTransfer blocks of SIZE octets.\n" \
2381         )       
2382 #define time_trivial_usage \
2383         "[OPTION]... COMMAND [ARGS...]"
2384 #define time_full_usage \
2385         "Runs the program COMMAND with arguments ARGS.  When COMMAND finishes,\n" \
2386         "COMMAND's resource usage information is displayed\n\n" \
2387         "Options:\n" \
2388         "\t-v\tDisplays verbose resource usage information."
2389
2390 #define top_trivial_usage \
2391         "[-d <seconds>]"
2392 #define top_full_usage \
2393         "top provides an view of processor activity in real time.\n" \
2394         "This utility reads the status for all processes in /proc each <seconds>\n" \
2395         "and shows the status for however many processes will fit on the screen.\n" \
2396         "This utility will not show processes that are started after program startup,\n" \
2397         "but it will show the EXIT status for and PIDs that exit while it is running."
2398
2399 #define touch_trivial_usage \
2400         "[-c] FILE [FILE ...]"
2401 #define touch_full_usage \
2402         "Update the last-modified date on the given FILE[s].\n\n" \
2403         "Options:\n" \
2404         "\t-c\tDo not create any files"
2405 #define touch_example_usage \
2406         "$ ls -l /tmp/foo\n" \
2407         "/bin/ls: /tmp/foo: No such file or directory\n" \
2408         "$ touch /tmp/foo\n" \
2409         "$ ls -l /tmp/foo\n" \
2410         "-rw-rw-r--    1 andersen andersen        0 Apr 15 01:11 /tmp/foo\n" 
2411
2412 #define tr_trivial_usage \
2413         "[-cds] STRING1 [STRING2]"
2414 #define tr_full_usage \
2415         "Translate, squeeze, and/or delete characters from\n" \
2416         "standard input, writing to standard output.\n\n" \
2417         "Options:\n" \
2418         "\t-c\ttake complement of STRING1\n" \
2419         "\t-d\tdelete input characters coded STRING1\n" \
2420         "\t-s\tsqueeze multiple output characters of STRING2 into one character"
2421 #define tr_example_usage \
2422         "$ echo "gdkkn vnqkc" | tr [a-y] [b-z]\n" \
2423         "hello world\n" 
2424
2425 #define traceroute_trivial_usage \
2426         "[-dnrv] [-m max_ttl] [-p port#] [-q nqueries]\n\
2427         [-s src_addr] [-t tos] [-w wait] host [data size]"
2428 #define traceroute_full_usage \
2429         "trace the route ip packets follow going to \"host\"\n" \
2430         "Options:\n" \
2431         "\t-d\tset SO_DEBUG options to socket\n" \
2432         "\t-n\tPrint hop addresses numerically rather than symbolically\n" \
2433         "\t-r\tBypass the normal routing tables and send directly to a host\n" \
2434         "\t-v\tVerbose output\n" \
2435         "\t-m max_ttl\tSet the max time-to-live (max number of hops)\n" \
2436         "\t-p port#\tSet the base UDP port number used in probes\n" \
2437         "\t\t(default is 33434)\n" \
2438         "\t-q nqueries\tSet the number of probes per ``ttl'' to nqueries\n" \
2439         "\t\t(default is 3)\n" \
2440         "\t-s src_addr\tUse the following IP address as the source address\n" \
2441         "\t-t tos\tSet the type-of-service in probe packets to the following value\n" \
2442         "\t\t(default 0)\n" \
2443         "\t-w wait\tSet the time (in seconds) to wait for a response to a probe\n" \
2444         "\t\t(default 3 sec.)."
2445
2446
2447 #define true_trivial_usage \
2448         ""
2449 #define true_full_usage \
2450         "Return an exit code of TRUE (0)."
2451 #define true_example_usage \
2452         "$ true\n" \
2453         "$ echo $?\n" \
2454         "0\n"
2455
2456 #define tty_trivial_usage \
2457         ""
2458 #define tty_full_usage \
2459         "Print the file name of the terminal connected to standard input.\n\n"\
2460         "Options:\n" \
2461         "\t-s\tprint nothing, only return an exit status"
2462 #define tty_example_usage \
2463         "$ tty\n" \
2464         "/dev/tty2\n"
2465
2466 #define udhcpc_trivial_usage \
2467         "[-fbnqv] [-c CLIENTID] [-H HOSTNAME] [-i INTERFACE]\n[-p pidfile] [-r IP] [-s script]"
2468 #define udhcpc_full_usage \
2469         "\t-c,\t--clientid=CLIENTID\tClient identifier\n" \
2470         "\t-H,\t--hostname=HOSTNAME\tClient hostname\n" \
2471         "\t-h,\t                   \tAlias for -H\n" \
2472         "\t-f,\t--foreground\tDo not fork after getting lease\n" \
2473         "\t-b,\t--background\tFork to background if lease cannot be immediately negotiated.\n" \
2474         "\t-i,\t--interface=INTERFACE\tInterface to use (default: eth0)\n" \
2475         "\t-n,\t--now\tExit with failure if lease cannot be immediately negotiated.\n" \
2476         "\t-p,\t--pidfile=file\tStore process ID of daemon in file\n" \
2477         "\t-q,\t--quit\tQuit after obtaining lease\n" \
2478         "\t-r,\t--request=IP\tIP address to request (default: none)\n" \
2479         "\t-s,\t--script=file\tRun file at dhcp events (default: /usr/share/udhcpc/default.script)\n" \
2480         "\t-v,\t--version\tDisplay version"
2481
2482 #define udhcpd_trivial_usage \
2483         "[configfile]\n" \
2484
2485 #define udhcpd_full_usage \
2486         ""
2487
2488 #ifdef CONFIG_FEATURE_MOUNT_FORCE
2489   #define USAGE_MOUNT_FORCE(a) a
2490 #else
2491   #define USAGE_MOUNT_FORCE(a)
2492 #endif
2493 #define umount_trivial_usage \
2494         "[flags] FILESYSTEM|DIRECTORY"
2495 #define umount_full_usage \
2496         "Unmount file systems\n" \
2497         "\nFlags:\n" "\t-a\tUnmount all file systems" \
2498         USAGE_MTAB(" in /etc/mtab\n\t-n\tDon't erase /etc/mtab entries") \
2499         "\n\t-r\tTry to remount devices as read-only if mount is busy" \
2500         USAGE_MOUNT_FORCE("\n\t-f\tForce umount (i.e., unreachable NFS server)") \
2501         USAGE_MOUNT_LOOP("\n\t-l\tDo not free loop device (if a loop device has been used)")
2502 #define umount_example_usage \
2503         "$ umount /dev/hdc1 \n"
2504
2505 #define uname_trivial_usage \
2506         "[OPTION]..."
2507 #define uname_full_usage \
2508         "Print certain system information.  With no OPTION, same as -s.\n\n" \
2509         "Options:\n" \
2510         "\t-a\tprint all information\n" \
2511         "\t-m\tthe machine (hardware) type\n" \
2512         "\t-n\tprint the machine's network node hostname\n" \
2513         "\t-r\tprint the operating system release\n" \
2514         "\t-s\tprint the operating system name\n" \
2515         "\t-p\tprint the host processor type\n" \
2516         "\t-v\tprint the operating system version"
2517 #define uname_example_usage \
2518         "$ uname -a\n" \
2519         "Linux debian 2.2.15pre13 #5 Tue Mar 14 16:03:50 MST 2000 i686 unknown\n" 
2520
2521 #define uncompress_trivial_usage \
2522         "[-c] [-f] [ name ... ]"
2523 #define uncompress_full_usage \
2524         "Uncompress .Z file[s]\n" \
2525         "Options:\n" \
2526         "\t-c\textract to stdout\n" \
2527         "\t-f\tforce overwrite an existing file\n"
2528         
2529 #define uniq_trivial_usage \
2530         "[OPTION]... [INPUT [OUTPUT]]"
2531 #define uniq_full_usage \
2532         "Discard all but one of successive identical lines from INPUT\n" \
2533         "(or standard input), writing to OUTPUT (or standard output).\n\n" \
2534         "Options:\n" \
2535         "\t-c\tprefix lines by the number of occurrences\n" \
2536         "\t-d\tonly print duplicate lines\n" \
2537         "\t-u\tonly print unique lines\n" \
2538         "\t-f N\tskip the first N fields\n" \
2539         "\t-s N\tskip the first N chars (after any skipped fields)"
2540 #define uniq_example_usage \
2541         "$ echo -e \"a\\na\\nb\\nc\\nc\\na\" | sort | uniq\n" \
2542         "a\n" \
2543         "b\n" \
2544         "c\n"
2545
2546 #define unix2dos_trivial_usage \
2547         "[option] [FILE]"
2548 #define unix2dos_full_usage \
2549         "Converts FILE from unix format to dos format.  When no option\n" \
2550         "is given, the input is converted to the opposite output format.\n" \
2551         "When no file is given, uses stdin for input and stdout for output.\n" \
2552         "Options:\n" \
2553         "\t-u\toutput will be in UNIX format\n" \
2554         "\t-d\toutput will be in DOS format"
2555
2556 #define unzip_trivial_usage \
2557         "[-opts[modifiers]] file[.zip] [list] [-x xlist] [-d exdir]"
2558 #define unzip_full_usage \
2559         "Extracts files from ZIP archives.\n\n" \
2560         "Options:\n" \
2561         "\t-l\tlist archive contents (short form)\n" \
2562         "\t-n\tnever overwrite existing files (default)\n" \
2563         "\t-o\toverwrite files without prompting\n" \
2564         "\t-p\tsend output to stdout\n" \
2565         "\t-q\tbe quiet\n" \
2566         "\t-x\texclude these files\n" \
2567         "\t-d\textract files into this directory"
2568
2569 #define uptime_trivial_usage \
2570         ""
2571 #define uptime_full_usage \
2572         "Display the time since the last boot."
2573 #define uptime_example_usage \
2574         "$ uptime\n" \
2575         "  1:55pm  up  2:30, load average: 0.09, 0.04, 0.00\n" 
2576
2577 #define usleep_trivial_usage \
2578         "N" 
2579 #define usleep_full_usage \
2580         "Pause for N microseconds."
2581 #define usleep_example_usage \
2582         "$ usleep 1000000\n" \
2583         "[pauses for 1 second]\n"
2584
2585 #define uudecode_trivial_usage \
2586         "[FILE]..."
2587 #define uudecode_full_usage \
2588         "Uudecode a file that is uuencoded.\n\n" \
2589         "Options:\n" \
2590         "\t-o FILE\tdirect output to FILE" 
2591 #define uudecode_example_usage \
2592         "$ uudecode -o busybox busybox.uu\n" \
2593         "$ ls -l busybox\n" \
2594         "-rwxr-xr-x   1 ams      ams        245264 Jun  7 21:35 busybox\n" 
2595
2596 #define uuencode_trivial_usage \
2597         "[OPTION] [INFILE] REMOTEFILE"
2598 #define uuencode_full_usage \
2599         "Uuencode a file.\n\n" \
2600         "Options:\n" \
2601         "\t-m\tuse base64 encoding per RFC1521"
2602 #define uuencode_example_usage \
2603         "$ uuencode busybox busybox\n" \
2604         "begin 755 busybox\n" \
2605         "<encoded file snipped>\n" \
2606         "$ uudecode busybox busybox > busybox.uu\n" \
2607         "$\n"
2608
2609 #define vconfig_trivial_usage \
2610         "COMMAND [OPTIONS] ..."
2611
2612 #define vconfig_full_usage \
2613 "Usage: add             [interface-name] [vlan_id] \n" \
2614 "       rem             [vlan-name] \n" \
2615 "       set_flag        [interface-name] [flag-num]       [0 | 1] \n" \
2616 "       set_egress_map  [vlan-name]      [skb_priority]   [vlan_qos] \n" \
2617 "       set_ingress_map [vlan-name]      [skb_priority]   [vlan_qos] \n" \
2618 "       set_name_type   [name-type] \n" 
2619
2620 #define vi_trivial_usage \
2621         "[OPTION] [FILE]..."
2622 #define vi_full_usage \
2623         "edit FILE.\n\n" \
2624         "Options:\n" \
2625         "\t-R\tRead-only- do not write to the file." 
2626
2627 #define vlock_trivial_usage \
2628         "[OPTIONS]"
2629 #define vlock_full_usage \
2630         "Lock a virtual terminal.  A password is required to unlock\n" \
2631         "Options:\n" \
2632         "\t-a\tLock all VTs"
2633
2634 #define watch_trivial_usage \
2635         "[-n <seconds>] COMMAND..."
2636 #define watch_full_usage \
2637         "Executes a program periodically.\n" \
2638         "Options:\n" \
2639         "\t-n\tLoop period in seconds - default is 2." 
2640 #define watch_example_usage \
2641         "$ watch date\n" \
2642         "Mon Dec 17 10:31:40 GMT 2000\n" \
2643         "Mon Dec 17 10:31:42 GMT 2000\n" \
2644         "Mon Dec 17 10:31:44 GMT 2000" 
2645
2646 #define watchdog_trivial_usage \
2647         "[-t <seconds>] DEV"
2648 #define watchdog_full_usage \
2649         "Periodically write to watchdog device DEV.\n" \
2650         "Options:\n" \
2651         "\t-t\tTimer period in seconds - default is 30."
2652
2653 #define wc_trivial_usage \
2654         "[OPTION]... [FILE]..."
2655 #define wc_full_usage \
2656         "Print line, word, and byte counts for each FILE, and a total line if\n" \
2657         "more than one FILE is specified.  With no FILE, read standard input.\n\n" \
2658         "Options:\n" \
2659         "\t-c\tprint the byte counts\n" \
2660         "\t-l\tprint the newline counts\n" \
2661         "\t-L\tprint the length of the longest line\n" \
2662         "\t-w\tprint the word counts"
2663 #define wc_example_usage \
2664         "$ wc /etc/passwd\n" \
2665         "     31      46    1365 /etc/passwd\n" 
2666
2667 #define wget_trivial_usage \
2668         "[-c|--continue] [-q|--quiet] [-O|--output-document file]\n\t[--header 'header: value'] [-Y|--proxy on/off] [-P DIR] url"
2669 #define wget_full_usage \
2670         "wget retrieves files via HTTP or FTP\n\n" \
2671         "Options:\n" \
2672         "\t-c\tcontinue retrieval of aborted transfers\n" \
2673         "\t-q\tquiet mode - do not print\n" \
2674         "\t-P\tSet directory prefix to DIR\n" \
2675         "\t-O\tsave to filename ('-' for stdout)\n" \
2676         "\t-Y\tuse proxy ('on' or 'off')"
2677
2678 #define which_trivial_usage \
2679         "[COMMAND ...]"
2680 #define which_full_usage \
2681         "Locates a COMMAND."
2682 #define which_example_usage \
2683         "$ which login\n" \
2684         "/bin/login\n"
2685
2686 #define who_trivial_usage \
2687         " "
2688 #define who_full_usage \
2689         "Prints the current user names and related information"
2690
2691 #define whoami_trivial_usage \
2692         ""
2693 #define whoami_full_usage \
2694         "Prints the user name associated with the current effective user id."
2695
2696 #define xargs_trivial_usage \
2697         "[COMMAND] [-prt] [ARGS...]"
2698 #define xargs_full_usage \
2699         "Executes COMMAND on every item given by standard input.\n\n" \
2700         "Options:\n" \
2701         "\t-p\tPrompt the user about whether to run each command\n" \
2702         "\t-r\tDo not run command for empty readed lines\n" \
2703         "\t-t\tPrint the command line on stderr before executing it."
2704 #define xargs_example_usage \
2705         "$ ls | xargs gzip\n" \
2706         "$ find . -name '*.c' -print | xargs rm\n" 
2707
2708 #define yes_trivial_usage \
2709         "[OPTION]... [STRING]..."
2710 #define yes_full_usage \
2711         "Repeatedly outputs a line with all specified STRING(s), or 'y'."
2712
2713 #define zcat_trivial_usage \
2714         "FILE"
2715 #define zcat_full_usage \
2716         "Uncompress to stdout."