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