Magellan Linux

Annotation of /trunk/mkinitrd-magellan/busybox/include/usage.h

Parent Directory Parent Directory | Revision Log Revision Log


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