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