Extract usage information into a separate file.
authorMatt Kraai <kraai@debian.org>
Sun, 16 Jul 2000 20:57:15 +0000 (20:57 -0000)
committerMatt Kraai <kraai@debian.org>
Sun, 16 Jul 2000 20:57:15 +0000 (20:57 -0000)
175 files changed:
Makefile
applets/usage.c [new file with mode: 0644]
ar.c
archival/ar.c
archival/gunzip.c
archival/gzip.c
archival/tar.c
basename.c
cat.c
chmod_chown_chgrp.c
chroot.c
chvt.c
console-tools/chvt.c
console-tools/deallocvt.c
console-tools/dumpkmap.c
console-tools/loadacm.c
console-tools/loadfont.c
console-tools/loadkmap.c
console-tools/setkeycodes.c
coreutils/basename.c
coreutils/cat.c
coreutils/chroot.c
coreutils/cut.c
coreutils/date.c
coreutils/dd.c
coreutils/df.c
coreutils/dirname.c
coreutils/du.c
coreutils/echo.c
coreutils/head.c
coreutils/id.c
coreutils/length.c
coreutils/ln.c
coreutils/logname.c
coreutils/ls.c
coreutils/md5sum.c
coreutils/mkdir.c
coreutils/mkfifo.c
coreutils/mknod.c
coreutils/printf.c
coreutils/rm.c
coreutils/rmdir.c
coreutils/sleep.c
coreutils/sort.c
coreutils/sync.c
coreutils/tail.c
coreutils/tee.c
coreutils/test.c
coreutils/touch.c
coreutils/tr.c
coreutils/tty.c
coreutils/uname.c
coreutils/uniq.c
coreutils/usleep.c
coreutils/uudecode.c
coreutils/uuencode.c
coreutils/wc.c
coreutils/whoami.c
coreutils/yes.c
cp_mv.c
cut.c
date.c
dc.c
dd.c
deallocvt.c
df.c
dirname.c
dmesg.c
du.c
dumpkmap.c
dutmp.c
echo.c
editors/sed.c
fdflush.c
find.c
findutils/find.c
findutils/grep.c
findutils/which.c
free.c
freeramdisk.c
fsck_minix.c
grep.c
gunzip.c
gzip.c
head.c
hostname.c
id.c
insmod.c
internal.h
kill.c
lash.c
length.c
ln.c
loadacm.c
loadfont.c
loadkmap.c
logger.c
logname.c
ls.c
makedevs.c
md5sum.c
miscutils/dc.c
miscutils/dutmp.c
miscutils/makedevs.c
miscutils/mktemp.c
miscutils/mt.c
miscutils/update.c
mkdir.c
mkfifo.c
mkfs_minix.c
mknod.c
mkswap.c
mktemp.c
modutils/insmod.c
modutils/rmmod.c
more.c
mount.c
mt.c
nc.c
networking/hostname.c
networking/nc.c
networking/nslookup.c
networking/ping.c
networking/telnet.c
nslookup.c
ping.c
printf.c
procps/free.c
procps/kill.c
procps/ps.c
ps.c
rm.c
rmdir.c
rmmod.c
sed.c
setkeycodes.c
sh.c
shell/lash.c
sleep.c
sort.c
swaponoff.c
sync.c
sysklogd/logger.c
sysklogd/syslogd.c
syslogd.c
tail.c
tar.c
tee.c
telnet.c
test.c
touch.c
tr.c
tty.c
umount.c
uname.c
uniq.c
update.c
usage.c [new file with mode: 0644]
usleep.c
util-linux/dmesg.c
util-linux/fdflush.c
util-linux/freeramdisk.c
util-linux/fsck_minix.c
util-linux/mkfs_minix.c
util-linux/mkswap.c
util-linux/more.c
util-linux/mount.c
util-linux/swaponoff.c
util-linux/umount.c
uudecode.c
uuencode.c
wc.c
which.c
whoami.c
yes.c

index 232a17d38d51886bed7b3457f5034e6fc694baff..bcaac87c4bfee782ffd2dba4cac9e75b70955ca1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -80,7 +80,7 @@ ifndef $(PREFIX)
     PREFIX = `pwd`/_install
 endif
 
-OBJECTS   = $(shell ./busybox.sh) busybox.o messages.o utility.o
+OBJECTS   = $(shell ./busybox.sh) busybox.o messages.o usage.o utility.o
 CFLAGS    += -DBB_VER='"$(VERSION)"'
 CFLAGS    += -DBB_BT='"$(BUILDTIME)"'
 ifdef BB_INIT_SCRIPT
diff --git a/applets/usage.c b/applets/usage.c
new file mode 100644 (file)
index 0000000..d5a34ec
--- /dev/null
@@ -0,0 +1,1204 @@
+#include "internal.h"
+
+#if defined BB_AR
+const char ar_usage[] =
+       "ar [optxvV] archive [filenames] \n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nExtract or list files from an ar archive.\n\n"
+       "Options:\n"
+       "\to\t\tpreserve original dates\n"
+       "\tp\t\textract to stdout\n"
+       "\tt\t\tlist\n"
+       "\tx\t\textract\n"
+       "\tv\t\tverbosely list files processed\n"
+#endif
+       ;
+#endif
+
+#if defined BB_BASENAME
+const char basename_usage[] =
+       "basename FILE [SUFFIX]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nStrips directory path and suffixes from FILE.\n"
+       "If specified, also removes any trailing SUFFIX.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CAT
+const char cat_usage[] =
+       "cat [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nConcatenates FILE(s) and prints them to stdout.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CHMOD_CHOWN_CHGRP
+const char chgrp_usage[] =
+       "chgrp [OPTION]... GROUP FILE...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nChange the group membership of each FILE to GROUP.\n"
+       "\nOptions:\n\t-R\tChanges files and directories recursively.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CHMOD_CHOWN_CHGRP
+const char chmod_usage[] =
+       "chmod [-R] MODE[,MODE]... FILE...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nEach MODE is one or more of the letters ugoa, one of the symbols +-= and\n"
+       "one or more of the letters rwxst.\n\n"
+       "\nOptions:\n\t-R\tChanges files and directories recursively.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CHMOD_CHOWN_CHGRP
+const char chown_usage[] =
+       "chown [OPTION]...  OWNER[<.|:>[GROUP] FILE...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nChange the owner and/or group of each FILE to OWNER and/or GROUP.\n"
+       "\nOptions:\n\t-R\tChanges files and directories recursively.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CHROOT
+const char chroot_usage[] =
+       "chroot NEWROOT [COMMAND...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nRun COMMAND with root directory set to NEWROOT.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CHVT
+const char chvt_usage[] =
+       "chvt N\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nChanges the foreground virtual terminal to /dev/ttyN\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CP_MV
+const char cp_usage[] =
+       "cp [OPTION]... SOURCE DEST\n"
+       "   or: cp [OPTION]... SOURCE... DIRECTORY\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCopies SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n"
+       "\n"
+       "\t-a\tSame as -dpR\n"
+       "\t-d\tPreserves links\n"
+       "\t-p\tPreserves file attributes if possible\n"
+       "\t-f\tforce (implied; ignored) - always set\n"
+       "\t-R\tCopies directories recursively\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CUT
+const char cut_usage[] =
+       "cut [OPTION]... [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrints selected fields from each input FILE to standard output.\n\n"
+       "Options:\n"
+       "\t-b LIST\tOutput only bytes from LIST\n"
+       "\t-c LIST\tOutput only characters from LIST\n"
+       "\t-d CHAR\tUse CHAR instead of tab as the field delimiter\n"
+       "\t-s\tOnly output Lines if the include DELIM\n"
+       "\t-f N\tPrint only these fields\n"
+       "\t-n\tIgnored\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DATE
+const char date_usage[] =
+       "date [OPTION]... [+FORMAT]\n"
+       "  or:  date [OPTION] [MMDDhhmm[[CC]YY][.ss]]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nDisplays the current time in the given FORMAT, or sets the system date.\n"
+       "\nOptions:\n\t-R\tOutputs RFC-822 compliant date string\n"
+       "\t-s\tSets time described by STRING\n"
+       "\t-u\tPrints or sets Coordinated Universal Time\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DC
+const char dc_usage[] =
+       "dc expression ...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nThis is a Tiny RPN calculator that understands the\n"
+       "following operations: +, -, /, *, and, or, not, eor.\n"
+       "i.e. 'dc 2 2 add' -> 4, and 'dc 8 8 \\* 2 2 + /' -> 16\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DD
+const char dd_usage[] =
+       "dd [if=FILE] [of=FILE] [bs=N] [count=N] [skip=N] [seek=N]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCopy a file, converting and formatting according to options\n\n"
+       "\tif=FILE\tread from FILE instead of stdin\n"
+       "\tof=FILE\twrite to FILE instead of stdout\n"
+       "\tbs=N\tread and write N bytes at a time\n"
+       "\tcount=N\tcopy only N input blocks\n"
+       "\tskip=N\tskip N input blocks\n"
+       "\tseek=N\tskip N output blocks\n"
+       "\n"
+       "Numbers may be suffixed by w (x2), k (x1024), b (x512), or M (x1024^2)\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DEALLOCVT
+const char deallocvt_usage[] =
+       "deallocvt N\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+        "\nDeallocate unused virtual terminal /dev/ttyN\n"
+#endif
+        ;
+#endif
+
+#if defined BB_DF
+const char df_usage[] =
+       "df [filesystem ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint the filesystem space used and space available.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DIRNAME
+const char dirname_usage[] =
+       "dirname [FILENAME ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nStrips non-directory suffix from FILENAME\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DMESG
+const char dmesg_usage[] =
+       "dmesg [-c] [-n LEVEL] [-s SIZE]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrints or controls the kernel ring buffer\n\n"
+       "Options:\n"
+       "\t-c\t\tClears the ring buffer's contents after printing\n"
+       "\t-n LEVEL\tSets console logging level\n"
+       "\t-s SIZE\t\tUse a buffer of size SIZE\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DU
+const char du_usage[] =
+       "du [OPTION]... [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSummarizes disk space used for each FILE and/or directory.\n"
+       "Disk space is printed in units of 1024 bytes.\n\n"
+       "Options:\n"
+       "\t-l\tcount sizes many times if hard linked\n"
+       "\t-s\tdisplay only a total for each argument\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DUMPKMAP
+const char dumpkmap_usage[] =
+       "dumpkmap\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrints out a binary keyboard translation table to standard input.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DUTMP
+const char dutmp_usage[] =
+       "dutmp [FILE]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nDump utmp file format (pipe delimited) from FILE\n"
+       "or stdin to stdout.  (i.e. 'dutmp /var/run/utmp')\n"
+#endif
+       ;
+#endif
+
+#if defined BB_ECHO
+const char echo_usage[] =
+       "echo [-neE] [ARG ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrints the specified ARGs to stdout\n\n"
+       "Options:\n"
+       "\t-n\tsuppress trailing newline\n"
+       "\t-e\tinterpret backslash-escaped characters (i.e. \\t=tab etc)\n"
+       "\t-E\tdisable interpretation of backslash-escaped characters\n"
+#endif
+       ;
+#endif
+
+#if defined BB_FDFLUSH
+const char fdflush_usage[] =
+       "fdflush DEVICE\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nForces floppy disk drive to detect disk change\n"
+#endif
+       ;
+#endif
+
+#if defined BB_FIND
+const char find_usage[] =
+       "find [PATH...] [EXPRESSION]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSearch for files in a directory hierarchy.  The default PATH is\n"
+       "the current directory; default EXPRESSION is '-print'\n\n"
+       "\nEXPRESSION may consist of:\n"
+       "\t-follow\t\tDereference symbolic links.\n"
+       "\t-name PATTERN\tFile name (leading directories removed) matches PATTERN.\n"
+       "\t-print\t\tprint the full file name followed by a newline to stdout.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_FREE
+const char free_usage[] =
+       "free\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nDisplays the amount of free and used system memory\n"
+#endif
+       ;
+#endif
+
+#if defined BB_FREERAMDISK
+const char freeramdisk_usage[] =
+       "freeramdisk DEVICE\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nFrees all memory used by the specified ramdisk.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_FSCK_MINIX
+const char fsck_minix_usage[] =
+       "Usage: fsck.minix [-larvsmf] /dev/name\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPerforms a consistency check for MINIX filesystems.\n\n"
+       "Options:\n"
+       "\t-l\tLists all filenames\n"
+       "\t-r\tPerform interactive repairs\n"
+       "\t-a\tPerform automatic repairs\n"
+       "\t-v\tverbose\n"
+       "\t-s\tOutputs super-block information\n"
+       "\t-m\tActivates MINIX-like \"mode not cleared\" warnings\n"
+       "\t-f\tForce file system check.\n\n"
+#endif
+       ;
+#endif
+
+#if defined BB_GREP
+const char grep_usage[] =
+       "grep [-ihHnqvs] pattern [files...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSearch for PATTERN in each FILE or standard input.\n\n"
+       "Options:\n"
+       "\t-H\tprefix output lines with filename where match was found\n"
+       "\t-h\tsuppress the prefixing filename on output\n"
+       "\t-i\tignore case distinctions\n"
+       "\t-n\tprint line number with output lines\n"
+       "\t-q\tbe quiet. Returns 0 if result was found, 1 otherwise\n"
+       "\t-v\tselect non-matching lines\n"
+       "\t-s\tsuppress file open/read error messages\n\n"
+#endif
+       ;
+#endif
+
+#if defined BB_GUNZIP
+const char gunzip_usage[] =
+       "gunzip [OPTION]... FILE\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nUncompress FILE (or standard input if FILE is '-').\n\n"
+       "Options:\n"
+       "\t-c\tWrite output to standard output\n"
+       "\t-t\tTest compressed file integrity\n"
+#endif
+       ;
+#endif
+
+#if defined BB_GZIP
+const char gzip_usage[] =
+       "gzip [OPTION]... FILE\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCompress FILE with maximum compression.\n"
+       "When FILE is '-', reads standard input.  Implies -c.\n\n"
+       "Options:\n"
+       "\t-c\tWrite output to standard output instead of FILE.gz\n"
+#endif
+       ;
+#endif
+
+#if defined BB_HEAD
+const char head_usage[] =
+       "head [OPTION] [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint first 10 lines of each FILE to standard output.\n"
+       "With more than one FILE, precede each with a header giving the\n"
+       "file name. With no FILE, or when FILE is -, read standard input.\n\n"
+
+       "Options:\n" "\t-n NUM\t\tPrint first NUM lines instead of first 10\n"
+#endif
+       ;
+#endif
+
+#if defined BB_HOSTNAME
+const char hostname_usage[] =
+       "hostname [OPTION] {hostname | -F file}\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nGet or set the hostname or DNS domain name. If a hostname is given\n"
+       "(or a file with the -F parameter), the host name will be set.\n\n"
+       "Options:\n"
+       "\t-s\t\tShort\n"
+
+       "\t-i\t\tAddresses for the hostname\n"
+       "\t-d\t\tDNS domain name\n"
+       "\t-F FILE\t\tUse the contents of FILE to specify the hostname\n"
+#endif
+       ;
+#endif
+
+#if defined BB_ID
+const char id_usage[] =
+       "id [OPTIONS]... [USERNAME]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint information for USERNAME or the current user\n\n"
+       "Options:\n"
+       "\t-g\tprints only the group ID\n"
+       "\t-u\tprints only the user ID\n"
+       "\t-r\tprints the real user ID instead of the effective ID (with -ug)\n\n"
+#endif
+       ;
+#endif
+
+#if defined BB_INSMOD
+const char insmod_usage[] =
+       "insmod [OPTION]... MODULE [symbol=value]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nLoads the specified kernel modules into the kernel.\n\n"
+       "Options:\n"
+       "\t-f\tForce module to load into the wrong kernel version.\n"
+       "\t-k\tMake module autoclean-able.\n"
+       "\t-v\tverbose output\n" "\t-x\tdo not export externs\n"
+#endif
+       ;
+#endif
+
+#if defined BB_KILL
+const char kill_usage[] =
+       "kill [-signal] process-id [process-id ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSend a signal (default is SIGTERM) to the specified process(es).\n\n"
+       "Options:\n" "\t-l\tList all signal names and numbers.\n\n"
+#endif
+       ;
+#endif
+
+#if defined BB_KILLALL
+const char killall_usage[] =
+       "killall [-signal] process-name [process-name ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSend a signal (default is SIGTERM) to the specified process(es).\n\n"
+       "Options:\n" "\t-l\tList all signal names and numbers.\n\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LENGTH
+const char length_usage[] =
+       "length STRING\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrints out the length of the specified STRING.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LN
+const char ln_usage[] =
+       "ln [OPTION] TARGET... LINK_NAME|DIRECTORY\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCreate a link named LINK_NAME or DIRECTORY to the specified TARGET\n"
+       "\nYou may use '--' to indicate that all following arguments are non-options.\n\n"
+       "Options:\n"
+       "\t-s\tmake symbolic links instead of hard links\n"
+
+       "\t-f\tremove existing destination files\n"
+       "\t-n\tno dereference symlinks - treat like normal file\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LOADACM
+const char loadacm_usage[] =
+       "loadacm\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nLoads an acm from standard input.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LOADFONT
+const char loadfont_usage[] =
+       "loadfont\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "Loads a console font from standard input.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LOADKMAP
+const char loadkmap_usage[] =
+       "loadkmap\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nLoads a binary keyboard translation table from standard input.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LOGGER
+const char logger_usage[] =
+       "logger [OPTION]... [MESSAGE]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nWrite MESSAGE to the system log.  If MESSAGE is '-', log stdin.\n\n"
+       "Options:\n"
+       "\t-s\tLog to stderr as well as the system log.\n"
+       "\t-t\tLog using the specified tag (defaults to user name).\n"
+
+       "\t-p\tEnter the message with the specified priority.\n"
+       "\t\tThis may be numerical or a ``facility.level'' pair.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LOGNAME
+const char logname_usage[] =
+       "logname\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint the name of the current user.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LS
+const char ls_usage[] =
+       "ls [-1a"
+#ifdef BB_FEATURE_LS_TIMESTAMPS
+       "c"
+#endif
+       "d"
+#ifdef BB_FEATURE_LS_TIMESTAMPS
+       "e"
+#endif
+       "ln"
+#ifdef BB_FEATURE_LS_FILETYPES
+       "p"
+#endif
+#ifdef BB_FEATURE_LS_TIMESTAMPS
+       "u"
+#endif
+       "xAC"
+#ifdef BB_FEATURE_LS_FILETYPES
+       "F"
+#endif
+#ifdef BB_FEATURE_LS_RECURSIVE
+       "R"
+#endif
+       "] [filenames...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nList directory contents\n\n"
+       "Options:\n"
+       "\t-a\tdo not hide entries starting with .\n"
+#ifdef BB_FEATURE_LS_TIMESTAMPS
+       "\t-c\twith -l: show ctime (the time of last\n"
+       "\t\tmodification of file status information)\n"
+#endif
+       "\t-d\tlist directory entries instead of contents\n"
+#ifdef BB_FEATURE_LS_TIMESTAMPS
+       "\t-e\tlist both full date and full time\n"
+#endif
+       "\t-l\tuse a long listing format\n"
+       "\t-n\tlist numeric UIDs and GIDs instead of names\n"
+#ifdef BB_FEATURE_LS_FILETYPES
+       "\t-p\tappend indicator (one of /=@|) to entries\n"
+#endif
+#ifdef BB_FEATURE_LS_TIMESTAMPS
+       "\t-u\twith -l: show access time (the time of last\n"
+       "\t\taccess of the file)\n"
+#endif
+       "\t-x\tlist entries by lines instead of by columns\n"
+       "\t-A\tdo not list implied . and ..\n"
+       "\t-C\tlist entries by columns\n"
+#ifdef BB_FEATURE_LS_FILETYPES
+       "\t-F\tappend indicator (one of */=@|) to entries\n"
+#endif
+#ifdef BB_FEATURE_LS_RECURSIVE
+       "\t-R\tlist subdirectories recursively\n"
+#endif
+#endif
+       ;
+#endif
+
+#if defined BB_MAKEDEVS
+const char makedevs_usage[] =
+       "makedevs NAME TYPE MAJOR MINOR FIRST LAST [s]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCreates a range of block or character special files\n\n"
+       "TYPEs include:\n"
+       "\tb:\tMake a block (buffered) device.\n"
+       "\tc or u:\tMake a character (un-buffered) device.\n"
+       "\tp:\tMake a named pipe. MAJOR and MINOR are ignored for named pipes.\n\n"
+       "FIRST specifies the number appended to NAME to create the first device.\n"
+       "LAST specifies the number of the last item that should be created.\n"
+       "If 's' is the last argument, the base device is created as well.\n\n"
+       "For example:\n"
+       "\tmakedevs /dev/ttyS c 4 66 2 63   ->  ttyS2-ttyS63\n"
+       "\tmakedevs /dev/hda b 3 0 0 8 s    ->  hda,hda1-hda8\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MD5SUM
+const char md5sum_usage[] =
+       "md5sum [OPTION] [FILE]...\n"
+       "or:    md5sum [OPTION] -c [FILE]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint or check MD5 checksums.\n\n"
+       "Options:\n"
+       "With no FILE, or when FILE is -, read standard input.\n\n"
+       "\t-b\tread files in binary mode\n"
+       "\t-c\tcheck MD5 sums against given list\n"
+       "\t-t\tread files in text mode (default)\n"
+       "\t-g\tread a string\n"
+       "\nThe following two options are useful only when verifying checksums:\n"
+       "\t-s,\tdon't output anything, status code shows success\n"
+       "\t-w,\twarn about improperly formated MD5 checksum lines\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MKDIR
+const char mkdir_usage[] =
+       "mkdir [OPTION] DIRECTORY...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCreate the DIRECTORY(ies), if they do not already exist\n\n"
+       "Options:\n"
+
+       "\t-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n"
+       "\t-p\tno error if existing, make parent directories as needed\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MKFIFO
+const char mkfifo_usage[] =
+       "mkfifo [OPTIONS] name\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCreates a named pipe (identical to 'mknod name p')\n\n"
+       "Options:\n"
+       "\t-m\tcreate the pipe using the specified mode (default a=rw)\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MKFS_MINIX
+const char mkfs_minix_usage[] =
+       "mkfs.minix [-c | -l filename] [-nXX] [-iXX] /dev/name [blocks]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nMake a MINIX filesystem.\n\n"
+       "Options:\n"
+       "\t-c\t\tCheck the device for bad blocks\n"
+       "\t-n [14|30]\tSpecify the maximum length of filenames\n"
+       "\t-i INODES\tSpecify the number of inodes for the filesystem\n"
+       "\t-l FILENAME\tRead the bad blocks list from FILENAME\n"
+       "\t-v\t\tMake a Minix version 2 filesystem\n\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MKNOD
+const char mknod_usage[] =
+       "mknod [OPTIONS] NAME TYPE MAJOR MINOR\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCreate a special file (block, character, or pipe).\n\n"
+       "Options:\n"
+       "\t-m\tcreate the special file using the specified mode (default a=rw)\n\n"
+       "TYPEs include:\n"
+       "\tb:\tMake a block (buffered) device.\n"
+       "\tc or u:\tMake a character (un-buffered) device.\n"
+       "\tp:\tMake a named pipe. MAJOR and MINOR are ignored for named pipes.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MKSWAP
+const char mkswap_usage[] =
+       "mkswap [-c] [-v0|-v1] device [block-count]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrepare a disk partition to be used as a swap partition.\n\n"
+       "Options:\n" "\t-c\t\tCheck for read-ability.\n"
+       "\t-v0\t\tMake version 0 swap [max 128 Megs].\n"
+       "\t-v1\t\tMake version 1 swap [big!] (default for kernels > 2.1.117).\n"
+
+       "\tblock-count\tNumber of block to use (default is entire partition).\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MKTEMP
+const char mktemp_usage[] =
+       "mktemp [-q] TEMPLATE\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCreates a temporary file with its name based on TEMPLATE.\n"
+       "TEMPLATE is any name with six `Xs' (i.e. /tmp/temp.XXXXXX).\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MORE
+const char more_usage[] =
+       "more [FILE ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nMore is a filter for viewing FILE one screenful at a time.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MOUNT
+const char mount_usage[] = 
+       "mount [flags] device directory [-o options,more-options]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nMount a filesystem\n\n"
+       "Flags:\n" 
+       "\t-a:\t\tMount all filesystems in fstab.\n"
+#ifdef BB_MTAB
+       "\t-f:\t\t\"Fake\" mount. Add entry to mount table but don't mount it.\n"
+       "\t-n:\t\tDon't write a mount table entry.\n"
+#endif
+       "\t-o option:\tOne of many filesystem options, listed below.\n"
+       "\t-r:\t\tMount the filesystem read-only.\n"
+       "\t-t fs-type:\tSpecify the filesystem type.\n"
+       "\t-w:\t\tMount for reading and writing (default).\n"
+       "\n"
+       "Options for use with the \"-o\" flag:\n"
+       "\tasync/sync:\tWrites are asynchronous / synchronous.\n"
+       "\tatime/noatime:\tEnable / disable updates to inode access times.\n"
+       "\tdev/nodev:\tAllow use of special device files / disallow them.\n"
+       "\texec/noexec:\tAllow use of executable files / disallow them.\n"
+#if defined BB_FEATURE_MOUNT_LOOP
+       "\tloop:\t\tMounts a file via loop device.\n"
+#endif
+       "\tsuid/nosuid:\tAllow set-user-id-root programs / disallow them.\n"
+       "\tremount:\tRe-mount a currently-mounted filesystem, changing its flags.\n"
+       "\tro/rw:\t\tMount for read-only / read-write.\n"
+       "\nThere are EVEN MORE flags that are specific to each filesystem.\n"
+       "You'll have to see the written documentation for those.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MT
+const char mt_usage[] =
+       "mt [-f device] opcode value\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nControl magnetic tape drive operation\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CP_MV
+const char mv_usage[] =
+       "mv SOURCE DEST\n"
+       "   or: mv SOURCE... DIRECTORY\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nRename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_NC
+const char nc_usage[] =
+       "nc [IP] [port]\n" 
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nNetcat opens a pipe to IP:port\n"
+#endif
+       ;
+#endif
+
+#if defined BB_NSLOOKUP
+const char nslookup_usage[] =
+       "nslookup [HOST]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nQueries the nameserver for the IP address of the given HOST\n"
+#endif
+;
+#endif
+
+#if defined BB_PING
+#if defined BB_FEATURE_SIMPLE_PING
+const char ping_usage[] =
+       "ping host\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSend ICMP ECHO_REQUEST packets to network hosts\n"
+#endif
+       ;
+#else /* ! defined BB_FEATURE_SIMPLE_PING */
+const char ping_usage[] =
+       "ping [OPTION]... host\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSend ICMP ECHO_REQUEST packets to network hosts.\n\n"
+       "Options:\n"
+       "\t-c COUNT\tSend only COUNT pings.\n"
+       "\t-s SIZE\t\tSend SIZE data bytes in packets (default=56).\n"
+       "\t-q\t\tQuiet mode, only displays output at start\n"
+       "\t\t\tand when finished.\n"
+#endif
+       ;
+#endif
+#endif
+
+#if defined BB_PRINTF
+const char printf_usage[] =
+       "printf FORMAT [ARGUMENT...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nFormats and prints ARGUMENT(s) according to FORMAT,\n"
+       "Where FORMAT controls the output exactly as in C printf.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_PS
+const char ps_usage[] =
+       "ps\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nReport process status\n"
+       "\nThis version of ps accepts no options.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_RM
+const char rm_usage[] =
+       "rm [OPTION]... FILE...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nRemove (unlink) the FILE(s).  You may use '--' to\n"
+       "indicate that all following arguments are non-options.\n\n"
+       "Options:\n"
+       "\t-f\t\tremove existing destinations, never prompt\n"
+       "\t-r or -R\tremove the contents of directories recursively\n"
+#endif
+       ;
+#endif
+
+#if defined BB_RMDIR
+const char rmdir_usage[] =
+       "rmdir [OPTION]... DIRECTORY...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nRemove the DIRECTORY(ies), if they are empty.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_RMMOD
+const char rmmod_usage[] =
+       "rmmod [OPTION]... [MODULE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nUnloads the specified kernel modules from the kernel.\n\n"
+       "Options:\n" 
+       "\t-a\tTry to remove all unused kernel modules.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SED
+const char sed_usage[] =
+       "sed [-Vhnef] pattern [files...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\n"
+       "-n\tsuppress automatic printing of pattern space\n"
+       "-e script\tadd the script to the commands to be executed\n"
+       "-f scriptfile\tadd the contents of script-file to the commands to be executed\n"
+       "-h\tdisplay this help message\n"
+       "-V\toutput version information and exit\n"
+       "\n"
+       "If no -e or -f is given, the first non-option argument is taken as the\n"
+       "sed script to interpret. All remaining arguments are names of input\n"
+       "files; if no input files are specified, then the standard input is read.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SETKEYCODES
+const char setkeycodes_usage[] =
+       "setkeycodes SCANCODE KEYCODE ...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSet entries into the kernel's scancode-to-keycode map,\n"
+       "allowing unusual keyboards to generate usable keycodes.\n\n" 
+       "SCANCODE may be either xx or e0xx (hexadecimal),\n"
+       "and KEYCODE is given in decimal\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SH
+const char shell_usage[] =
+       "sh [FILE]...\n"
+       "   or: sh -c command [args]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nlash: The BusyBox command interpreter (shell).\n\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SLEEP
+const char sleep_usage[] =
+       "sleep N\n" 
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPause for N seconds.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SORT
+const char sort_usage[] =
+       "sort [-n]"
+#ifdef BB_FEATURE_SORT_REVERSE
+       " [-r]"
+#endif
+       " [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSorts lines of text in the specified files\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SWAPONOFF
+const char swapoff_usage[] =
+       "swapoff [OPTION] [device]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nStop swapping virtual memory pages on the given device.\n\n"
+       "Options:\n"
+       "\t-a\tStop swapping on all swap devices\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SWAPONOFF
+const char swapon_usage[] =
+       "swapon [OPTION] [device]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nStart swapping virtual memory pages on the given device.\n\n"
+       "Options:\n"
+       "\t-a\tStart swapping on all swap devices\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SYNC
+const char sync_usage[] =
+       "sync\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nWrite all buffered filesystem blocks to disk.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SYSLOGD
+const char syslogd_usage[] =
+       "syslogd [OPTION]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nLinux system and kernel (provides klogd) logging utility.\n"
+       "Note that this version of syslogd/klogd ignores /etc/syslog.conf.\n\n"
+       "Options:\n"
+       "\t-m NUM\t\tInterval between MARK lines (default=20min, 0=off)\n"
+       "\t-n\t\tRun as a foreground process\n"
+#ifdef BB_FEATURE_KLOGD
+       "\t-K\t\tDo not start up the klogd process\n"
+#endif
+       "\t-O FILE\t\tUse an alternate log file (default=/var/log/messages)\n"
+#endif
+       ;
+#endif
+
+#if defined BB_TAIL
+#if defined BB_FEATURE_SIMPLE_TAIL
+const char tail_usage[] =
+       "tail [OPTION] [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint last 10 lines of each FILE to standard output.\n"
+       "With more than one FILE, precede each with a header giving the\n"
+       "file name. With no FILE, or when FILE is -, read standard input.\n\n"
+       "Options:\n"
+       "\t-n NUM\t\tPrint last NUM lines instead of first 10\n"
+
+       "\t-f\t\tOutput data as the file grows.  This version\n"
+       "\t\t\tof 'tail -f' supports only one file at a time.\n"
+#endif
+       ;
+#else /* ! defined BB_FEATURE_SIMPLE_TAIL */
+const char tail_usage[] =
+       "tail [OPTION]... [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint last 10 lines of each FILE to standard output.\n"
+       "With more than one FILE, precede each with a header giving the file name.\n"
+       "With no FILE, or when FILE is -, read standard input.\n"
+       "\n"
+       "  -c=N[kbm]       output the last N bytes\n"
+       "  -f              output appended data as the file grows\n"
+       "  -n=N            output the last N lines, instead of last 10\n"
+       "  -q              never output headers giving file names\n"
+       "  -v              always output headers giving file names\n"
+       "\n"
+       "If the first character of N (bytes or lines) is a `+', output begins with \n"
+       "the Nth item from the start of each file, otherwise, print the last N items\n"
+       "in the file.  N bytes may be suffixed by k (x1024), b (x512), or m (1024^2).\n"
+#endif
+       ;
+#endif
+#endif
+
+#if defined BB_TAR
+const char tar_usage[] =
+#ifdef BB_FEATURE_TAR_CREATE
+       "tar -[cxtvO] "
+#else
+       "tar -[xtvO] "
+#endif
+#if defined BB_FEATURE_TAR_EXCLUDE
+       "[--exclude File] "
+#endif
+       "[-f tarFile] [FILE] ...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCreate, extract, or list files from a tar file.  Note that\n"
+       "this version of tar treats hard links as separate files.\n\n"
+       "Main operation mode:\n"
+#ifdef BB_FEATURE_TAR_CREATE
+       "\tc\t\tcreate\n"
+#endif
+       "\tx\t\textract\n"
+       "\tt\t\tlist\n"
+       "\nFile selection:\n"
+       "\tf\t\tname of tarfile or \"-\" for stdin\n"
+       "\tO\t\textract to stdout\n"
+#if defined BB_FEATURE_TAR_EXCLUDE
+       "\t--exclude\tfile to exclude\n"
+#endif
+       "\nInformative output:\n"
+       "\tv\t\tverbosely list files processed\n"
+#endif
+       ;
+#endif
+
+#if defined BB_TEE
+const char tee_usage[] =
+       "tee [OPTION]... [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCopy standard input to each FILE, and also to standard output.\n\n"
+       "Options:\n" "\t-a\tappend to the given FILEs, do not overwrite\n"
+#endif
+       ;
+#endif
+
+#if defined BB_TELNET
+const char telnet_usage[] =
+       "telnet host [port]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nTelnet is used to establish interactive communication with another\n"
+       "computer over a network using the TELNET protocol.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_TEST
+const char test_usage[] =
+       "test EXPRESSION\n"
+       "or   [ EXPRESSION ]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nChecks file types and compares values returning an exit\n"
+       "code determined by the value of EXPRESSION.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_TOUCH
+const char touch_usage[] =
+       "touch [-c] file [file ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nUpdate the last-modified date on the given file[s].\n\n"
+       "Options:\n"
+       "\t-c\tDo not create any files\n"
+#endif
+       ;
+#endif
+
+#if defined BB_TR
+const char tr_usage[] =
+       "tr [-cds] STRING1 [STRING2]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nTranslate, squeeze, and/or delete characters from\n"
+       "standard input, writing to standard output.\n\n"
+       "Options:\n"
+       "\t-c\ttake complement of STRING1\n"
+       "\t-d\tdelete input characters coded STRING1\n"
+       "\t-s\tsqueeze multiple output characters of STRING2 into one character\n"
+#endif
+       ;
+#endif
+
+#if defined BB_TTY
+const char tty_usage[] =
+       "tty\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint the file name of the terminal connected to standard input.\n\n"
+       "Options:\n"
+       "\t-s\tprint nothing, only return an exit status\n"
+#endif
+       ;
+#endif
+
+#if defined BB_UMOUNT
+const char umount_usage[] =
+       "umount [flags] filesystem|directory\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "Unmount file systems\n"
+       "\nFlags:\n" "\t-a:\tUnmount all file systems"
+#ifdef BB_MTAB
+       " in /etc/mtab\n\t-n:\tDon't erase /etc/mtab entries\n"
+#else
+       "\n"
+#endif
+       "\t-r:\tTry to remount devices as read-only if mount is busy\n"
+#if defined BB_FEATURE_MOUNT_FORCE
+       "\t-f:\tForce filesystem umount (i.e. unreachable NFS server)\n"
+#endif
+#if defined BB_FEATURE_MOUNT_LOOP
+       "\t-l:\tDo not free loop device (if a loop device has been used)\n"
+#endif
+#endif
+       ;
+#endif
+
+#if defined BB_UNAME
+const char uname_usage[] =
+       "uname [OPTION]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint certain system information.  With no OPTION, same as -s.\n\n"
+       "Options:\n"
+       "\t-a\tprint all information\n"
+       "\t-m\tthe machine (hardware) type\n"
+       "\t-n\tprint the machine's network node hostname\n"
+       "\t-r\tprint the operating system release\n"
+       "\t-s\tprint the operating system name\n"
+
+       "\t-p\tprint the host processor type\n"
+       "\t-v\tprint the operating system version\n"
+#endif
+       ;
+#endif
+
+#if defined BB_UNIQ
+const char uniq_usage[] =
+       "uniq [OPTION]... [INPUT [OUTPUT]]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nDiscard all but one of successive identical lines from INPUT\n"
+       "(or standard input), writing to OUTPUT (or standard output).\n"
+#endif
+       ;
+#endif
+
+#if defined BB_UPDATE
+const char update_usage[] =
+       "update [options]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPeriodically flushes filesystem buffers.\n\n"
+       "Options:\n"
+       "\t-S\tforce use of sync(2) instead of flushing\n"
+       "\t-s SECS\tcall sync this often (default 30)\n"
+       "\t-f SECS\tflush some buffers this often (default 5)\n"
+#endif
+       ;
+#endif
+
+#if defined BB_USLEEP
+const char usleep_usage[] =
+       "usleep N\n" 
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPause for N microseconds.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_UUDECODE
+const char uudecode_usage[] =
+       "uudecode [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nUudecode a file that is uuencoded.\n\n"
+       "Options:\n"
+       "\t-o FILE\tdirect output to FILE\n"
+#endif
+       ;
+#endif
+
+#if defined BB_UUENCODE
+const char uuencode_usage[] =
+       "uuencode [OPTION] [INFILE] REMOTEFILE\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nUuencode a file.\n\n"
+       "Options:\n"
+       "\t-m\tuse base64 encoding as of RFC1521\n"
+#endif
+       ;
+#endif
+
+#if defined BB_WC
+const char wc_usage[] =
+       "wc [OPTION]... [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint line, word, and byte counts for each FILE, and a total line if\n"
+       "more than one FILE is specified.  With no FILE, read standard input.\n\n"
+       "Options:\n"
+       "\t-c\tprint the byte counts\n"
+       "\t-l\tprint the newline counts\n"
+
+       "\t-L\tprint the length of the longest line\n"
+       "\t-w\tprint the word counts\n"
+#endif
+       ;
+#endif
+
+#if defined BB_WHICH
+const char which_usage[] =
+       "which [COMMAND ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nLocates a COMMAND.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_WHOAMI
+const char whoami_usage[] =
+       "whoami\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrints the user name associated with the current effective user id.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_YES
+const char yes_usage[] =
+       "yes [OPTION]... [STRING]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nRepeatedly outputs a line with all specified STRING(s), or `y'.\n"
+#endif
+       ;
+#endif
diff --git a/ar.c b/ar.c
index a43cc1dffa87f230ada949f0b857638a9ec69d5d..d8c8d465b88e92d1a3110b3b49508f656426ecfb 100644 (file)
--- a/ar.c
+++ b/ar.c
@@ -65,18 +65,6 @@ struct ArInfo {
 };
 typedef struct ArInfo ArInfo;
 
-static const char ar_usage[] = "ar [optxvV] archive [filenames] \n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nExtract or list files from an ar archive.\n\n"
-       "Options:\n"
-       "\to\t\tpreserve original dates\n"
-       "\tp\t\textract to stdout\n"
-       "\tt\t\tlist\n"
-       "\tx\t\textract\n"
-       "\tv\t\tverbosely list files processed\n"
-#endif
-       ;
-
 /*
  * Display details of a file, verbosly if funct=2   
  */
index a43cc1dffa87f230ada949f0b857638a9ec69d5d..d8c8d465b88e92d1a3110b3b49508f656426ecfb 100644 (file)
@@ -65,18 +65,6 @@ struct ArInfo {
 };
 typedef struct ArInfo ArInfo;
 
-static const char ar_usage[] = "ar [optxvV] archive [filenames] \n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nExtract or list files from an ar archive.\n\n"
-       "Options:\n"
-       "\to\t\tpreserve original dates\n"
-       "\tp\t\textract to stdout\n"
-       "\tt\t\tlist\n"
-       "\tx\t\textract\n"
-       "\tv\t\tverbosely list files processed\n"
-#endif
-       ;
-
 /*
  * Display details of a file, verbosly if funct=2   
  */
index de68bd19b41195035755305fe38bd772242a53f3..b29bdf7c124d69878fab4eea3dd31e3aae426520 100644 (file)
 #include "internal.h"
 #include <getopt.h>
 
-static const char gunzip_usage[] =
-       "gunzip [OPTION]... FILE\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nUncompress FILE (or standard input if FILE is '-').\n\n"
-       "Options:\n"
-
-       "\t-c\tWrite output to standard output\n"
-       "\t-t\tTest compressed file integrity\n"
-#endif
-       ;
-
-       
-       /* These defines are very important for BusyBox.  Without these,
+/* These defines are very important for BusyBox.  Without these,
  * huge chunks of ram are pre-allocated making the BusyBox bss 
  * size Freaking Huge(tm), which is a bad thing.*/
 #define SMALL_MEM
index 8bc67d9c608c904c71003a9bb645424301a6843b..98ce259caf892ae45932b2695734153c56a3e7fe 100644 (file)
 #define SMALL_MEM
 #define DYN_ALLOC
 
-
-static const char gzip_usage[] =
-       "gzip [OPTION]... FILE\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCompress FILE with maximum compression.\n"
-       "When FILE is '-', reads standard input.  Implies -c.\n\n"
-
-       "Options:\n"
-       "\t-c\tWrite output to standard output instead of FILE.gz\n"
-#endif
-       ;
-
-
 /* I don't like nested includes, but the string and io functions are used
  * too often
  */
index 353694f3327f6af7ca2e7f8132b00ebda27737be..6f18dc43f3cef240e3c0596f8802899b9962cbff 100644 (file)
 #include <sys/types.h>
 #include <sys/sysmacros.h>
 
-
-static const char tar_usage[] =
-#ifdef BB_FEATURE_TAR_CREATE
-       "tar -[cxtvO] "
-#else
-       "tar -[xtvO] "
-#endif
-#if defined BB_FEATURE_TAR_EXCLUDE
-       "[--exclude File] "
-#endif
-       "[-f tarFile] [FILE] ...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCreate, extract, or list files from a tar file.  Note that\n"
-       "this version of tar treats hard links as separate files.\n\n"
-       "Main operation mode:\n"
-#ifdef BB_FEATURE_TAR_CREATE
-       "\tc\t\tcreate\n"
-#endif
-       "\tx\t\textract\n"
-       "\tt\t\tlist\n"
-       "\nFile selection:\n"
-       "\tf\t\tname of tarfile or \"-\" for stdin\n"
-       "\tO\t\textract to stdout\n"
-#if defined BB_FEATURE_TAR_EXCLUDE
-       "\t--exclude\tfile to exclude\n"
-#endif
-       "\nInformative output:\n"
-       "\tv\t\tverbosely list files processed\n"
-#endif
-       ;
-
 /* Tar file constants  */
 #ifndef MAJOR
 #define MAJOR(dev) (((dev)>>8)&0xff)
index 5678c4433daf04a023da1359701803df4786240e..5b83eef492c47ffaee991fd88dd3b068f8827a11 100644 (file)
 #include "internal.h"
 #include <stdio.h>
 
-const char *basename_usage="basename FILE [SUFFIX]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nStrips directory path and suffixes from FILE.\n"
-       "If specified, also removes any trailing SUFFIX.\n"
-#endif
-;
-
-
 extern int basename_main(int argc, char **argv)
 {
        int m, n;
diff --git a/cat.c b/cat.c
index 6c17ee620f728487cd0d3c3aef3aa74d1c4d1941..c27f07e825c4ae4aacb743ec02c1a687a4dafc8b 100644 (file)
--- a/cat.c
+++ b/cat.c
@@ -34,13 +34,6 @@ static void print_file(FILE * file)
        fflush(stdout);
 }
 
-static const char cat_usage[] =
-       "cat [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nConcatenates FILE(s) and prints them to stdout.\n"
-#endif
-       ;
-
 extern int cat_main(int argc, char **argv)
 {
        FILE *file;
index 156a0a9f9a634d9fcc79d15c705179af402fbe3f..c02f2a3cb26fb108a1a32fafc4360e129b646270 100644 (file)
@@ -43,29 +43,6 @@ static char *theMode = NULL;
 #define CHOWN_APP   2
 #define CHMOD_APP   3
 
-static const char chgrp_usage[] = "chgrp [OPTION]... GROUP FILE...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nChange the group membership of each FILE to GROUP.\n"
-       "\nOptions:\n\t-R\tChanges files and directories recursively.\n"
-#endif
-       ;
-static const char chown_usage[] =
-       "chown [OPTION]...  OWNER[<.|:>[GROUP] FILE...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nChange the owner and/or group of each FILE to OWNER and/or GROUP.\n"
-       "\nOptions:\n\t-R\tChanges files and directories recursively.\n"
-#endif
-       ;
-static const char chmod_usage[] =
-       "chmod [-R] MODE[,MODE]... FILE...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nEach MODE is one or more of the letters ugoa, one of the symbols +-= and\n"
-       "one or more of the letters rwxst.\n\n"
-       "\nOptions:\n\t-R\tChanges files and directories recursively.\n"
-#endif
-       ;
-
-
 static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
 {
        switch (whichApp) {
index 95aed3d177da790d3e58870e26d906a5523278e1..9b1a5a82d82dbd434efafb8bb43fb69c110e69c8 100644 (file)
--- a/chroot.c
+++ b/chroot.c
 #include <stdio.h>
 #include <errno.h>
 
-
-static const char chroot_usage[] = "chroot NEWROOT [COMMAND...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nRun COMMAND with root directory set to NEWROOT.\n"
-#endif
-       ;
-
-
-
 int chroot_main(int argc, char **argv)
 {
        char *prog;
diff --git a/chvt.c b/chvt.c
index ab0e9218fd80600e01f59c407584ab45e1bc31f6..87a1248fd70f105799c7de11cc6d8f403a775b15 100644 (file)
--- a/chvt.c
+++ b/chvt.c
 #define VT_ACTIVATE     0x5606  /* make vt active */
 #define VT_WAITACTIVE   0x5607  /* wait for vt active */
 
-const char chvt_usage[] =
-       "chvt N\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nChanges the foreground virtual terminal to /dev/ttyN\n"
-#endif
-       ;
-
 int chvt_main(int argc, char **argv)
 {
        int fd, num;
index ab0e9218fd80600e01f59c407584ab45e1bc31f6..87a1248fd70f105799c7de11cc6d8f403a775b15 100644 (file)
 #define VT_ACTIVATE     0x5606  /* make vt active */
 #define VT_WAITACTIVE   0x5607  /* wait for vt active */
 
-const char chvt_usage[] =
-       "chvt N\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nChanges the foreground virtual terminal to /dev/ttyN\n"
-#endif
-       ;
-
 int chvt_main(int argc, char **argv)
 {
        int fd, num;
index 042de8649f2dff5ae20412417d5f54a1754850f1..9c477d23802b09916b0af96ca49e0ba92e4f67b2 100644 (file)
 /* From <linux/vt.h> */
 #define VT_DISALLOCATE  0x5608  /* free memory associated to vt */
 
-const char deallocvt_usage[] =
-       "deallocvt N\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-        "\nDeallocate unused virtual terminal /dev/ttyN\n"
-#endif
-        ;
-
 int deallocvt_main(int argc, char *argv[])
 {
        int fd, num, i;
index f1805052960f1f0e33446b433be8f21e027550c8..4ce6e8698071a7a99cbce4e3e98e8b8810bd0738 100644 (file)
@@ -38,14 +38,6 @@ struct kbentry {
 #define NR_KEYS         128
 #define MAX_NR_KEYMAPS  256
 
-
-static const char dumpkmap_usage[] = "dumpkmap\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrints out a binary keyboard translation table to standard input.\n"
-#endif
-       ;
-
-
 int dumpkmap_main(int argc, char **argv)
 {
        struct kbentry ke;
index 9eebf3bb57964cd585e03714a990ea6c35b6e689..2d70ffc5d206323ab7b512bdd9b0b62d98e7784d 100644 (file)
 #include <sys/ioctl.h>
 #include <sys/kd.h>
 
-static const char loadacm_usage[] = "loadacm\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nLoads an acm from standard input.\n"
-#endif
-       ;
-
 typedef unsigned short unicode;
 
 static long int ctoi(unsigned char *s, int *is_unicode);
index 46a7574c0d616bf2556f0bbcf0dd4cb64aed5560..622142925a53ace8a342fdfaf2335841737a2b37 100644 (file)
 #define PSF_MAXMODE    0x03
 #define PSF_SEPARATOR  0xFFFF
 
-static const char loadfont_usage[] = "loadfont\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "Loads a console font from standard input.\n"
-#endif
-       ;
-
 struct psf_header {
        unsigned char magic1, magic2;   /* Magic number */
        unsigned char mode;                     /* PSF font mode */
index 72247a6e4b6c49d5274a5fdc1f417317ef33c408..488585f9c816bf99c12223a7850f81b015b70e32 100644 (file)
@@ -38,14 +38,6 @@ struct kbentry {
 #define NR_KEYS         128
 #define MAX_NR_KEYMAPS  256
 
-
-static const char loadkmap_usage[] = "loadkmap\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nLoads a binary keyboard translation table from standard input.\n"
-#endif
-       ;
-
-
 int loadkmap_main(int argc, char **argv)
 {
        struct kbentry ke;
index 1bdb909ea7de5af68204fd1c920237f65d950280..284ffa194b70518672167e51bb34b6dada80ac6c 100644 (file)
@@ -35,17 +35,6 @@ struct kbkeycode {
 };
 #define KDSETKEYCODE    0x4B4D  /* write kernel keycode table entry */
 
-
-static const char setkeycodes_usage[] =
-       "setkeycodes SCANCODE KEYCODE ...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSet entries into the kernel's scancode-to-keycode map,\n"
-       "allowing unusual keyboards to generate usable keycodes.\n\n" 
-       "SCANCODE may be either xx or e0xx (hexadecimal),\n"
-       "and KEYCODE is given in decimal\n"
-#endif
-       ;
-
 extern int 
 setkeycodes_main(int argc, char** argv)
 {
index 5678c4433daf04a023da1359701803df4786240e..5b83eef492c47ffaee991fd88dd3b068f8827a11 100644 (file)
 #include "internal.h"
 #include <stdio.h>
 
-const char *basename_usage="basename FILE [SUFFIX]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nStrips directory path and suffixes from FILE.\n"
-       "If specified, also removes any trailing SUFFIX.\n"
-#endif
-;
-
-
 extern int basename_main(int argc, char **argv)
 {
        int m, n;
index 6c17ee620f728487cd0d3c3aef3aa74d1c4d1941..c27f07e825c4ae4aacb743ec02c1a687a4dafc8b 100644 (file)
@@ -34,13 +34,6 @@ static void print_file(FILE * file)
        fflush(stdout);
 }
 
-static const char cat_usage[] =
-       "cat [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nConcatenates FILE(s) and prints them to stdout.\n"
-#endif
-       ;
-
 extern int cat_main(int argc, char **argv)
 {
        FILE *file;
index 95aed3d177da790d3e58870e26d906a5523278e1..9b1a5a82d82dbd434efafb8bb43fb69c110e69c8 100644 (file)
 #include <stdio.h>
 #include <errno.h>
 
-
-static const char chroot_usage[] = "chroot NEWROOT [COMMAND...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nRun COMMAND with root directory set to NEWROOT.\n"
-#endif
-       ;
-
-
-
 int chroot_main(int argc, char **argv)
 {
        char *prog;
index 08b4586a4e070312a5277c61760f25e051a9bc31..8b28fff7ae6abaa511187d0b8d60dec24c943c69 100644 (file)
@@ -206,20 +206,6 @@ void cut()
        }
 }
 
-const char cut_usage[] =
-       "cut [OPTION]... [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrints selected fields from each input FILE to standard output.\n\n"
-       "Options:\n"
-       "\t-b LIST\tOutput only bytes from LIST\n"
-       "\t-c LIST\tOutput only characters from LIST\n"
-       "\t-d CHAR\tUse CHAR instead of tab as the field delimiter\n"
-       "\t-s\tOnly output Lines if the include DELIM\n"
-       "\t-f N\tPrint only these fields\n"
-       "\t-n\tIgnored\n"
-#endif
-       ;
-
 int cut_main(int argc, char **argv)
 {
        int i = 1;
index 3ede1237ca84ec4891152df6e58562f22abc8bca..b6fc6c68654d6f220756a3478f9096199930534b 100644 (file)
    an RFC 822 complient date output for shell scripting
    mail commands */
 
-static const char date_usage[] = "date [OPTION]... [+FORMAT]\n"
-       "  or:  date [OPTION] [MMDDhhmm[[CC]YY][.ss]]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nDisplays the current time in the given FORMAT, or sets the system date.\n"
-       "\nOptions:\n\t-R\tOutputs RFC-822 compliant date string\n"
-       "\t-s\tSets time described by STRING\n"
-       "\t-u\tPrints or sets Coordinated Universal Time\n"
-#endif
-       ;
-
-
 /* Input parsing code is always bulky - used heavy duty libc stuff as
    much as possible, missed out a lot of bounds checking */
 
index 6261dfef57dc48f529f4ce4bcab478599557b7c0..86899194c2b8537636d4fbde089c0333249063f6 100644 (file)
 typedef unsigned long long int uintmax_t;
 #endif
 
-static const char dd_usage[] =
-       "dd [if=FILE] [of=FILE] [bs=N] [count=N] [skip=N] [seek=N]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCopy a file, converting and formatting according to options\n\n"
-       "\tif=FILE\tread from FILE instead of stdin\n"
-       "\tof=FILE\twrite to FILE instead of stdout\n"
-       "\tbs=N\tread and write N bytes at a time\n"
-       "\tcount=N\tcopy only N input blocks\n"
-       "\tskip=N\tskip N input blocks\n"
-       "\tseek=N\tskip N output blocks\n"
-       "\n"
-       "Numbers may be suffixed by w (x2), k (x1024), b (x512), or M (x1024^2)\n"
-#endif
-       ;
-
-
-
 extern int dd_main(int argc, char **argv)
 {
        char *inFile = NULL;
index 62226ceb8016964ac1483b350114a2b499a93fc5..714c799654c03ccf329f3a0c72622cf253f0c30c 100644 (file)
 #include <sys/stat.h>
 #include <sys/vfs.h>
 
-static const char df_usage[] = "df [filesystem ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint the filesystem space used and space available.\n"
-#endif
-       ;
-
 extern const char mtab_file[]; /* Defined in utility.c */
 
 static int df(char *device, const char *mountPoint)
index 0b60ceb8858c64348cd462d19c95b752a265672c..e63fef30b47a184dc4299d3270029efe49004cfc 100644 (file)
 #include "internal.h"
 #include <stdio.h>
 
-const char dirname_usage[] =
-       "dirname [FILENAME ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nStrips non-directory suffix from FILENAME\n"
-#endif
-       ;
-
 extern int dirname_main(int argc, char **argv)
 {
        char* s;
index f1a44427abf5c88dca2b45a10e243b34d419e868..147914c9ed85d8db666291ee69ff407b6d3f1e60 100644 (file)
 
 typedef void (Display) (long, char *);
 
-static const char du_usage[] =
-       "du [OPTION]... [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSummarizes disk space used for each FILE and/or directory.\n"
-       "Disk space is printed in units of 1024 bytes.\n\n"
-       "Options:\n"
-       "\t-l\tcount sizes many times if hard linked\n"
-       "\t-s\tdisplay only a total for each argument\n"
-#endif
-       ;
-
 static int du_depth = 0;
 static int count_hardlinks = 0;
 
@@ -174,7 +163,7 @@ int du_main(int argc, char **argv)
        return(0);
 }
 
-/* $Id: du.c,v 1.22 2000/07/14 18:38:26 andersen Exp $ */
+/* $Id: du.c,v 1.23 2000/07/16 20:57:15 kraai Exp $ */
 /*
 Local Variables:
 c-file-style: "linux"
index 387ea3fefc5673427a194051800085dd0e78f8f2..73be8f2e2467dc1f53db2748cc1df45c5634859b 100644 (file)
 #include "internal.h"
 #include <stdio.h>
 
-static const char uname_usage[] =
-       "echo [-neE] [ARG ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrints the specified ARGs to stdout\n\n"
-       "Options:\n"
-       "\t-n\tsuppress trailing newline\n"
-       "\t-e\tinterpret backslash-escaped characters (i.e. \\t=tab etc)\n"
-       "\t-E\tdisable interpretation of backslash-escaped characters\n"
-#endif
-       ;
-
 extern int 
 echo_main(int argc, char** argv)
 {
@@ -58,7 +47,7 @@ echo_main(int argc, char** argv)
                        eflag = 0;
                        break;
                default: 
-                       usage(uname_usage);
+                       usage(echo_usage);
                }
        }
 
index b82678dc23da622baf00ec5d17c86cc0964b9c91..58b3cae682733b582e592a5e9d5e1550f3870aa6 100644 (file)
 #include <errno.h>
 #include <stdio.h>
 
-const char head_usage[] =
-       "head [OPTION] [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint first 10 lines of each FILE to standard output.\n"
-       "With more than one FILE, precede each with a header giving the\n"
-       "file name. With no FILE, or when FILE is -, read standard input.\n\n"
-
-       "Options:\n" "\t-n NUM\t\tPrint first NUM lines instead of first 10\n"
-#endif
-       ;
-
 int head(int len, FILE * src)
 {
        int i;
@@ -111,4 +100,4 @@ int head_main(int argc, char **argv)
        return(0);
 }
 
-/* $Id: head.c,v 1.12 2000/07/14 01:51:25 kraai Exp $ */
+/* $Id: head.c,v 1.13 2000/07/16 20:57:15 kraai Exp $ */
index 69dfe2658c855a5ef7c0be767ca5c3d64b6b90bd..56a2e279f15d1889f18324f45191ff4630ea0630 100644 (file)
 #include <grp.h>
 #include <sys/types.h>
 
-static const char id_usage[] =
-       "id [OPTIONS]... [USERNAME]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint information for USERNAME or the current user\n\n"
-       "Options:\n"
-       "\t-g\tprints only the group ID\n"
-       "\t-u\tprints only the user ID\n"
-       "\t-r\tprints the real user ID instead of the effective ID (with -ug)\n\n"
-#endif
-       ;
-
 extern int id_main(int argc, char **argv)
 {
        int no_user = 0, no_group = 0, print_real = 0;
index 82f50c159cd813bf03b4ab2abfaeb5d50b728c59..cf4fb1c079dba9812e32d7d668c886c0b6b6fa2d 100644 (file)
@@ -4,13 +4,6 @@
 #include <string.h>
 #include <stdio.h>
 
-const char length_usage[] =
-       "length STRING\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrints out the length of the specified STRING.\n"
-#endif
-       ;
-
 extern int length_main(int argc, char **argv)
 {
        if (argc != 2 || **(argv + 1) == '-')
index 9f7774380be7d0d053b2a28034b41b3f59cee2c4..8b8fa1c5887eadc9a5bf00c433f33c05e2098ddb 100644 (file)
 #include <dirent.h>
 #include <errno.h>
 
-static const char ln_usage[] =
-       "ln [OPTION] TARGET... LINK_NAME|DIRECTORY\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCreate a link named LINK_NAME or DIRECTORY to the specified TARGET\n"
-       "\nYou may use '--' to indicate that all following arguments are non-options.\n\n"
-       "Options:\n"
-       "\t-s\tmake symbolic links instead of hard links\n"
-
-       "\t-f\tremove existing destination files\n"
-       "\t-n\tno dereference symlinks - treat like normal file\n"
-#endif
-       ;
-
 static int symlinkFlag = FALSE;
 static int removeoldFlag = FALSE;
 static int followLinks = TRUE;
index 12ebfbde69c9eeffa83ffb4ff75ac49fa77b915f..a0aff42d648611b9c840e86ed10baf42e24c3f1a 100644 (file)
 #include "internal.h"
 #include <stdio.h>
 
-static const char logname_usage[] = "logname\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint the name of the current user.\n"
-#endif
-       ;
-
 extern int logname_main(int argc, char **argv)
 {
        char *user = xmalloc(9);
index 0644cde877e7e4eb777a039a7a1afba61c5fcd6a..e56e3bcfb038023015dd7c64e8d3c0b84c9433f8 100644 (file)
@@ -427,63 +427,6 @@ static int list_item(const char *name)
        return 1;
 }
 
-static const char ls_usage[] = "ls [-1a"
-#ifdef BB_FEATURE_LS_TIMESTAMPS
-       "c"
-#endif
-       "d"
-#ifdef BB_FEATURE_LS_TIMESTAMPS
-       "e"
-#endif
-       "ln"
-#ifdef BB_FEATURE_LS_FILETYPES
-       "p"
-#endif
-#ifdef BB_FEATURE_LS_TIMESTAMPS
-       "u"
-#endif
-       "xAC"
-#ifdef BB_FEATURE_LS_FILETYPES
-       "F"
-#endif
-#ifdef BB_FEATURE_LS_RECURSIVE
-       "R"
-#endif
-       "] [filenames...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nList directory contents\n\n"
-       "Options:\n"
-       "\t-a\tdo not hide entries starting with .\n"
-#ifdef BB_FEATURE_LS_TIMESTAMPS
-       "\t-c\twith -l: show ctime (the time of last\n"
-    "\t\tmodification of file status information)\n"
-#endif
-       "\t-d\tlist directory entries instead of contents\n"
-#ifdef BB_FEATURE_LS_TIMESTAMPS
-       "\t-e\tlist both full date and full time\n"
-#endif
-       "\t-l\tuse a long listing format\n"
-       "\t-n\tlist numeric UIDs and GIDs instead of names\n"
-#ifdef BB_FEATURE_LS_FILETYPES
-       "\t-p\tappend indicator (one of /=@|) to entries\n"
-#endif
-#ifdef BB_FEATURE_LS_TIMESTAMPS
-       "\t-u\twith -l: show access time (the time of last\n"
-       "\t\taccess of the file)\n"
-#endif
-       "\t-x\tlist entries by lines instead of by columns\n"
-       "\t-A\tdo not list implied . and ..\n"
-       "\t-C\tlist entries by columns\n"
-#ifdef BB_FEATURE_LS_FILETYPES
-       "\t-F\tappend indicator (one of */=@|) to entries\n"
-#endif
-#ifdef BB_FEATURE_LS_RECURSIVE
-       "\t-R\tlist subdirectories recursively\n"
-#endif
-#endif
-       ;
-
-
 #ifdef BB_FEATURE_LS_RECURSIVE
 static int dirAction(const char *fileName, struct stat *statbuf, void* junk)
 {
index e6f1c86b4a00e8e6832d0ca469f8dc5ef57bd340..fad563fe7f977dd1a9dc404a5da65653ea04755a 100644 (file)
@@ -582,23 +582,6 @@ static int status_only = 0; /* With -c, don't generate any output.
 static int warn = 0; /* With -w, print a message to standard error warning
                         about each improperly formatted MD5 checksum line */
 
-static const char md5sum_usage[] =
-    "md5sum [OPTION] [FILE]...\n"
-    "or:    md5sum [OPTION] -c [FILE]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-    "\nPrint or check MD5 checksums.\n\n"
-    "Options:\n"
-    "With no FILE, or when FILE is -, read standard input.\n\n"
-    "\t-b\tread files in binary mode\n"
-    "\t-c\tcheck MD5 sums against given list\n"
-    "\t-t\tread files in text mode (default)\n"
-    "\t-g\tread a string\n"
-    "\nThe following two options are useful only when verifying checksums:\n"
-    "\t-s,\tdon't output anything, status code shows success\n"
-    "\t-w,\twarn about improperly formated MD5 checksum lines\n"
-#endif
-;
-
 static int split_3(char *s,
                    size_t s_len,
                    unsigned char **u,
index f6e08cadc076dae316354da7eeedc3bded56d37c..f824cdcb671bb9bc5804d52a9b4a040b63b51b70 100644 (file)
 #include <stdio.h>
 #include <errno.h>
 
-static const char mkdir_usage[] =
-       "mkdir [OPTION] DIRECTORY...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCreate the DIRECTORY(ies), if they do not already exist\n\n"
-       "Options:\n"
-
-       "\t-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n"
-       "\t-p\tno error if existing, make parent directories as needed\n"
-#endif
-       ;
-
-
 static int parentFlag = FALSE;
 static mode_t mode = 0777;
 
index f701a97d58f50b8124196507baf52be7d4145689..3db17bbbcf323c9ad1eeabd564c888b2af6f36f0 100644 (file)
 #include <sys/stat.h>
 #include <errno.h>
 
-static const char mkfifo_usage[] = "mkfifo [OPTIONS] name\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCreates a named pipe (identical to 'mknod name p')\n\n"
-       "Options:\n"
-       "\t-m\tcreate the pipe using the specified mode (default a=rw)\n"
-#endif
-       ;
-
 extern int mkfifo_main(int argc, char **argv)
 {
        char *thisarg;
index ac96817ee20b99119585b5a21573494d3054d723..b51c8f3e3f66b4a511a8de2e7f99f405113703a6 100644 (file)
 #include <fcntl.h>
 #include <unistd.h>
 
-static const char mknod_usage[] = "mknod [OPTIONS] NAME TYPE MAJOR MINOR\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCreate a special file (block, character, or pipe).\n\n"
-       "Options:\n"
-       "\t-m\tcreate the special file using the specified mode (default a=rw)\n\n"
-       "TYPEs include:\n"
-       "\tb:\tMake a block (buffered) device.\n"
-       "\tc or u:\tMake a character (un-buffered) device.\n"
-       "\tp:\tMake a named pipe. MAJOR and MINOR are ignored for named pipes.\n"
-#endif
-       ;
-
 int mknod_main(int argc, char **argv)
 {
        char *thisarg;
index f572897595b5a65cb1fe7d9986795fce5904fa83..6a87fc319902afbddfaf16118c6a6235e77bb076 100644 (file)
@@ -137,13 +137,6 @@ static void verify __P((char *s, char *end));
 /* The value to return to the calling program.  */
 static int exit_status;
 
-static const char printf_usage[] = "printf FORMAT [ARGUMENT...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nFormats and prints ARGUMENT(s) according to FORMAT,\n"
-       "Where FORMAT controls the output exactly as in C printf.\n"
-#endif
-       ;
-
 int printf_main(int argc, char **argv)
 {
        char *format;
index 2067d878c269f266dc9d05a8d06f6cc23de10b5c..275c059463487ff73175faabff4a9a46cc594706 100644 (file)
 #include <dirent.h>
 #include <errno.h>
 
-static const char *rm_usage = "rm [OPTION]... FILE...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nRemove (unlink) the FILE(s).  You may use '--' to\n"
-       "indicate that all following arguments are non-options.\n\n"
-       "Options:\n"
-       "\t-f\t\tremove existing destinations, never prompt\n"
-       "\t-r or -R\tremove the contents of directories recursively\n"
-#endif
-       ;
-
-
 static int recursiveFlag = FALSE;
 static int forceFlag = FALSE;
 static const char *srcName;
index 3c3533fae6cde96fd98030d67b3142556d30a39b..500890e4013b23f9348cd8d77c2329ac46238dbf 100644 (file)
 #include <stdio.h>
 #include <errno.h>
 
-const char rmdir_usage[] =
-       "rmdir [OPTION]... DIRECTORY...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nRemove the DIRECTORY(ies), if they are empty.\n"
-#endif
-       ;
-
 extern int rmdir_main(int argc, char **argv)
 {
        if (argc == 1 || **(argv + 1) == '-')
index c7ab32d4bc96467f77049b9bddd9e51242d12efc..d6705c4c3cc5c6a280c830531aad66e79fb23b98 100644 (file)
 #include "internal.h"
 #include <stdio.h>
 
-const char sleep_usage[] = "sleep N\n" 
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPause for N seconds.\n"
-#endif
-       ;
-
 extern int sleep_main(int argc, char **argv)
 {
        if ((argc < 2) || (**(argv + 1) == '-')) {
index c754989eafdb2f154611ceace21a56621ff097a1..6af5c4df302af127b07c402c494fdd0d1e4134e0 100644 (file)
 #include <stdio.h>
 #include <errno.h>
 
-static const char sort_usage[] = "sort [-n]"
-#ifdef BB_FEATURE_SORT_REVERSE
-" [-r]"
-#endif
-" [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-"\nSorts lines of text in the specified files\n"
-#endif
-;
-
 #ifdef BB_FEATURE_SORT_REVERSE
 #define APPLY_REVERSE(x) (reverse ? -(x) : (x))
 static int reverse = 0;
@@ -304,4 +294,4 @@ int sort_main(int argc, char **argv)
        return(0);
 }
 
-/* $Id: sort.c,v 1.19 2000/07/14 01:51:25 kraai Exp $ */
+/* $Id: sort.c,v 1.20 2000/07/16 20:57:15 kraai Exp $ */
index f7c14b04cac85c7addbb054300e007c69ebd25dc..3737cb1f1822f86aebfb0421116bc048e3ed7fd2 100644 (file)
 #include "internal.h"
 #include <stdio.h>
 
-const char sync_usage[] =
-       "sync\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nWrite all buffered filesystem blocks to disk.\n"
-#endif
-       ;
-
 extern int sync_main(int argc, char **argv)
 {
        if (argc > 1 && **(argv + 1) == '-')
index 9232356ebcdecc70c486575187e339b1b0417686..cea63e8400b924c63fa92a6ce7ab04fcd54a3906 100644 (file)
@@ -72,21 +72,6 @@ static int forever;
 /* If nonzero, print filename headers.  */
 static int print_headers;
 
-const char tail_usage[] =
-       "tail [OPTION] [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint last 10 lines of each FILE to standard output.\n"
-       "With more than one FILE, precede each with a header giving the\n"
-       "file name. With no FILE, or when FILE is -, read standard input.\n\n"
-       "Options:\n"
-       "\t-n NUM\t\tPrint last NUM lines instead of first 10\n"
-
-       "\t-f\t\tOutput data as the file grows.  This version\n"
-       "\t\t\tof 'tail -f' supports only one file at a time.\n"
-#endif
-       ;
-
-
 static void write_header(const char *filename)
 {
        static int first_file = 1;
@@ -516,25 +501,6 @@ char *program_name;
 /* Nonzero if we have ever read standard input.  */
 static int have_read_stdin;
 
-
-static const char tail_usage[] = "tail [OPTION]... [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-"\nPrint last 10 lines of each FILE to standard output.\n\
-With more than one FILE, precede each with a header giving the file name.\n\
-With no FILE, or when FILE is -, read standard input.\n\
-\n\
-  -c=N[kbm]       output the last N bytes\n\
-  -f              output appended data as the file grows\n\
-  -n=N            output the last N lines, instead of last 10\n\
-  -q              never output headers giving file names\n\
-  -v              always output headers giving file names\n\
-\n\
-If the first character of N (bytes or lines) is a `+', output begins with \n\
-the Nth item from the start of each file, otherwise, print the last N items\n\
-in the file.  N bytes may be suffixed by k (x1024), b (x512), or m (1024^2).\n"
-#endif
-;
-
 static void write_header(const char *filename, const char *comment)
 {
        static int first_file = 1;
index 67b42a24d55e10276c2f552c0a5e816324b33ac9..c15408b51a39fad758198216feed05914f5d36c7 100644 (file)
 #include <errno.h>
 #include <stdio.h>
 
-static const char tee_usage[] =
-       "tee [OPTION]... [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCopy standard input to each FILE, and also to standard output.\n\n"
-       "Options:\n" "\t-a\tappend to the given FILEs, do not overwrite\n"
-#if 0
-       "\t-i\tignore interrupt signals\n"
-#endif
-#endif
-;
-
-
 /* FileList _______________________________________________________________ */
 
 #define FL_MAX 1024
@@ -133,4 +121,4 @@ int tee_main(int argc, char **argv)
        return(0);
 }
 
-/* $Id: tee.c,v 1.12 2000/07/14 01:51:25 kraai Exp $ */
+/* $Id: tee.c,v 1.13 2000/07/16 20:57:15 kraai Exp $ */
index bf1622cde717b3b1ae98523be983892ccf83cd65..9a1888b280883fe38d1dbb7b4c8fa49c95214776 100644 (file)
@@ -178,15 +178,6 @@ static int test_eaccess();
 static int is_a_group_member();
 static void initialize_group_array();
 
-const char test_usage[] =
-       "test EXPRESSION\n"
-       "or   [ EXPRESSION ]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nChecks file types and compares values returning an exit\n"
-       "code determined by the value of EXPRESSION.\n"
-#endif
-       ;
-
 extern int
 test_main(int argc, char** argv)
 {
index ac275423c1288c6f62eb14ac047a0cbdad250573..afdd265f742e82ca66a526114b2c9c7743a08e4b 100644 (file)
 #include <utime.h>
 #include <errno.h>
 
-
-static const char touch_usage[] = "touch [-c] file [file ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nUpdate the last-modified date on the given file[s].\n\n"
-       "Options:\n"
-       "\t-c\tDo not create any files\n"
-#endif
-       ;
-
-
 extern int touch_main(int argc, char **argv)
 {
        int fd;
index 2971ef68e411c04b22f3087b3c493db02c927e44..004092477e9e1667bf1fd58ba94572445936fd75 100644 (file)
 #define bb_need_write_error
 #include "messages.c"
 
-const char *tr_usage="tr [-cds] STRING1 [STRING2]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nTranslate, squeeze, and/or delete characters from\n"
-       "standard input, writing to standard output.\n\n"
-       "Options:\n"
-       "\t-c\ttake complement of STRING1\n"
-       "\t-d\tdelete input characters coded STRING1\n"
-       "\t-s\tsqueeze multiple output characters of STRING2 into one character\n"
-#endif
-;
-
-
-
 #ifdef TRUE
 #undef TRUE
 #undef FALSE
index f3c7fb74f5ceefb3297a839c6b170ebfd1a6da3f..bbc051f6b6ffe8395b157a756206d8191e709ac2 100644 (file)
 #include <stdio.h>
 #include <sys/types.h>
 
-static const char tty_usage[] = "tty\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint the file name of the terminal connected to standard input.\n\n"
-       "Options:\n"
-       "\t-s\tprint nothing, only return an exit status\n"
-#endif
-       ;
-
 extern int tty_main(int argc, char **argv)
 {
        char *tty;
index b7c88ece5f458b51375511e2299f4a105e06df8a..55616dd19bd0ffaaa4d578a8a3238f2adc9120ef 100644 (file)
 # include <sys/systeminfo.h>
 #endif
 
-
-static const char uname_usage[] =
-       "uname [OPTION]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint certain system information.  With no OPTION, same as -s.\n\n"
-       "Options:\n"
-       "\t-a\tprint all information\n"
-       "\t-m\tthe machine (hardware) type\n"
-       "\t-n\tprint the machine's network node hostname\n"
-       "\t-r\tprint the operating system release\n"
-       "\t-s\tprint the operating system name\n"
-
-       "\t-p\tprint the host processor type\n"
-       "\t-v\tprint the operating system version\n"
-#endif
-       ;
-
-
 static void print_element(unsigned int mask, char *element);
 
 /* Values that are bitwise or'd into `toprint'. */
index 16b25767049071714eda66327bf872000f66585e..016fc77806cadb534616c9e79b65233fec608438 100644 (file)
 #include <string.h>
 #include <errno.h>
 
-static const char uniq_usage[] =
-       "uniq [OPTION]... [INPUT [OUTPUT]]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nDiscard all but one of successive identical lines from INPUT\n"
-       "(or standard input), writing to OUTPUT (or standard output).\n"
-#endif
-       ;
-
 /* max chars in line */
 #define UNIQ_MAX 4096
 
@@ -187,4 +179,4 @@ int uniq_main(int argc, char **argv)
        return(0);
 }
 
-/* $Id: uniq.c,v 1.12 2000/07/14 01:51:25 kraai Exp $ */
+/* $Id: uniq.c,v 1.13 2000/07/16 20:57:15 kraai Exp $ */
index da6cca9ab732dcb165be2616888bf538d8cbf5a9..fcdf3bbf66c7f53ea851874e48245cb35001ac5b 100644 (file)
 #include <stdlib.h>
 #include <unistd.h>
 
-const char usleep_usage[] = "usleep N\n" 
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPause for N microseconds.\n"
-#endif
-       ;
-
 extern int usleep_main(int argc, char **argv)
 {
        if ((argc < 2) || (**(argv + 1) == '-')) {
index 12a71a5739082d68c3f59ff3832c3af1550344db..90bef9238f103c885ad85e446fa12ee54f761d5c 100644 (file)
@@ -300,15 +300,6 @@ static int decode (const char *inname,
     return read_stduu (inname);
 }
 
-static const char uudecode_usage[] =
-    "uudecode [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-    "\nUudecode a file that is uuencoded.\n\n"
-    "Options:\n"
-    "\t-o FILE\tdirect output to FILE\n"
-#endif
-;
-
 int uudecode_main (int argc,
                    char **argv)
 {
index e107a01e71214b58798d0632976c138539401112..1433c7f3b4dd00bb8eb6b80fddfb007943a487f1 100644 (file)
@@ -180,15 +180,6 @@ static void encode()
   }
 }
 
-static const char uuencode_usage[] =
-    "uuencode [OPTION] [INFILE] REMOTEFILE\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-    "\nUuencode a file.\n\n"
-    "Options:\n"
-    "\t-m\tuse base64 encoding as of RFC1521\n"
-#endif
-;
-
 int uuencode_main (int argc,
                    char **argv)
 {
index 3b0e589b6ccdcda948419f261d0d8b9fcf4aa270..058444d89634f2d2126caa9e2ca717eeb6ec6e63 100644 (file)
 #include "internal.h"
 #include <stdio.h>
 
-static const char wc_usage[] = "wc [OPTION]... [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint line, word, and byte counts for each FILE, and a total line if\n"
-       "more than one FILE is specified.  With no FILE, read standard input.\n\n"
-       "Options:\n"
-       "\t-c\tprint the byte counts\n"
-       "\t-l\tprint the newline counts\n"
-
-       "\t-L\tprint the length of the longest line\n"
-       "\t-w\tprint the word counts\n"
-#endif
-       ;
-
 static int total_lines, total_words, total_chars, max_length;
 static int print_lines, print_words, print_chars, print_length;
 
index 01dff81f919b8b41be7be720f1177e5ba303adcf..84b27fe58ec472f0b63f9f766fe77bf6b38e6243 100644 (file)
 #include <stdio.h>
 #include <pwd.h>
 
-static const char whoami_usage[] = "whoami\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrints the user name associated with the current effective user id.\n"
-#endif
-       ;
-
 extern int whoami_main(int argc, char **argv)
 {
        char *user = xmalloc(9);
index 0191bb003592bc2b3c88e226c9def60b3d69a3c4..f41bbb6ef4375a878afe463ce4cd31c0ac15f2d8 100644 (file)
 #include "internal.h"
 #include <stdio.h>
 
-const char yes_usage[] =
-       "yes [OPTION]... [STRING]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nRepeatedly outputs a line with all specified STRING(s), or `y'.\n"
-#endif
-       ;
-
 extern int yes_main(int argc, char **argv)
 {
        int i;
diff --git a/cp_mv.c b/cp_mv.c
index 72ba537c5fc60e12127dabe9f3e0fcd6c46247bd..4c3c7a32caebed55184686b528dfa4e2139b766f 100644 (file)
--- a/cp_mv.c
+++ b/cp_mv.c
 #define is_mv 1
 static int         dz_i;               /* index into cp_mv_usage */
 
-const char cp_usage[] =
-       "cp [OPTION]... SOURCE DEST\n"
-       "   or: cp [OPTION]... SOURCE... DIRECTORY\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCopies SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n"
-       "\n"
-       "\t-a\tSame as -dpR\n"
-       "\t-d\tPreserves links\n"
-       "\t-p\tPreserves file attributes if possible\n"
-       "\t-f\tforce (implied; ignored) - always set\n"
-       "\t-R\tCopies directories recursively\n"
-#endif
-       ;
-
-const char mv_usage[] =
-       "mv SOURCE DEST\n"
-       "   or: mv SOURCE... DIRECTORY\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nRename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n"
-#endif
-       ;
-
 static const char *cp_mv_usage[] =     /* .rodata */
 {
        cp_usage,
diff --git a/cut.c b/cut.c
index 08b4586a4e070312a5277c61760f25e051a9bc31..8b28fff7ae6abaa511187d0b8d60dec24c943c69 100644 (file)
--- a/cut.c
+++ b/cut.c
@@ -206,20 +206,6 @@ void cut()
        }
 }
 
-const char cut_usage[] =
-       "cut [OPTION]... [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrints selected fields from each input FILE to standard output.\n\n"
-       "Options:\n"
-       "\t-b LIST\tOutput only bytes from LIST\n"
-       "\t-c LIST\tOutput only characters from LIST\n"
-       "\t-d CHAR\tUse CHAR instead of tab as the field delimiter\n"
-       "\t-s\tOnly output Lines if the include DELIM\n"
-       "\t-f N\tPrint only these fields\n"
-       "\t-n\tIgnored\n"
-#endif
-       ;
-
 int cut_main(int argc, char **argv)
 {
        int i = 1;
diff --git a/date.c b/date.c
index 3ede1237ca84ec4891152df6e58562f22abc8bca..b6fc6c68654d6f220756a3478f9096199930534b 100644 (file)
--- a/date.c
+++ b/date.c
    an RFC 822 complient date output for shell scripting
    mail commands */
 
-static const char date_usage[] = "date [OPTION]... [+FORMAT]\n"
-       "  or:  date [OPTION] [MMDDhhmm[[CC]YY][.ss]]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nDisplays the current time in the given FORMAT, or sets the system date.\n"
-       "\nOptions:\n\t-R\tOutputs RFC-822 compliant date string\n"
-       "\t-s\tSets time described by STRING\n"
-       "\t-u\tPrints or sets Coordinated Universal Time\n"
-#endif
-       ;
-
-
 /* Input parsing code is always bulky - used heavy duty libc stuff as
    much as possible, missed out a lot of bounds checking */
 
diff --git a/dc.c b/dc.c
index 7b13cb943698636d4840b3b64354cb89400516df..fac48e895a73da16eb00059aef05c08e7c6a5f4d 100644 (file)
--- a/dc.c
+++ b/dc.c
@@ -8,14 +8,6 @@
 
 /* Tiny RPN calculator, because "expr" didn't give me bitwise operations. */
 
-static const char dc_usage[] = "dc expression ...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-               "\nThis is a Tiny RPN calculator that understands the\n"
-               "following operations: +, -, /, *, and, or, not, eor.\n"
-               "i.e. 'dc 2 2 add' -> 4, and 'dc 8 8 \\* 2 2 + /' -> 16\n"
-#endif
-               ;
-
 static double stack[100];
 static unsigned int pointer;
 
diff --git a/dd.c b/dd.c
index 6261dfef57dc48f529f4ce4bcab478599557b7c0..86899194c2b8537636d4fbde089c0333249063f6 100644 (file)
--- a/dd.c
+++ b/dd.c
 typedef unsigned long long int uintmax_t;
 #endif
 
-static const char dd_usage[] =
-       "dd [if=FILE] [of=FILE] [bs=N] [count=N] [skip=N] [seek=N]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCopy a file, converting and formatting according to options\n\n"
-       "\tif=FILE\tread from FILE instead of stdin\n"
-       "\tof=FILE\twrite to FILE instead of stdout\n"
-       "\tbs=N\tread and write N bytes at a time\n"
-       "\tcount=N\tcopy only N input blocks\n"
-       "\tskip=N\tskip N input blocks\n"
-       "\tseek=N\tskip N output blocks\n"
-       "\n"
-       "Numbers may be suffixed by w (x2), k (x1024), b (x512), or M (x1024^2)\n"
-#endif
-       ;
-
-
-
 extern int dd_main(int argc, char **argv)
 {
        char *inFile = NULL;
index 042de8649f2dff5ae20412417d5f54a1754850f1..9c477d23802b09916b0af96ca49e0ba92e4f67b2 100644 (file)
 /* From <linux/vt.h> */
 #define VT_DISALLOCATE  0x5608  /* free memory associated to vt */
 
-const char deallocvt_usage[] =
-       "deallocvt N\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-        "\nDeallocate unused virtual terminal /dev/ttyN\n"
-#endif
-        ;
-
 int deallocvt_main(int argc, char *argv[])
 {
        int fd, num, i;
diff --git a/df.c b/df.c
index 62226ceb8016964ac1483b350114a2b499a93fc5..714c799654c03ccf329f3a0c72622cf253f0c30c 100644 (file)
--- a/df.c
+++ b/df.c
 #include <sys/stat.h>
 #include <sys/vfs.h>
 
-static const char df_usage[] = "df [filesystem ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint the filesystem space used and space available.\n"
-#endif
-       ;
-
 extern const char mtab_file[]; /* Defined in utility.c */
 
 static int df(char *device, const char *mountPoint)
index 0b60ceb8858c64348cd462d19c95b752a265672c..e63fef30b47a184dc4299d3270029efe49004cfc 100644 (file)
--- a/dirname.c
+++ b/dirname.c
 #include "internal.h"
 #include <stdio.h>
 
-const char dirname_usage[] =
-       "dirname [FILENAME ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nStrips non-directory suffix from FILENAME\n"
-#endif
-       ;
-
 extern int dirname_main(int argc, char **argv)
 {
        char* s;
diff --git a/dmesg.c b/dmesg.c
index 961e532b0b46425877e68a2a9e4ddca75c327281..a8c61c7b4cad5108cfdd41a97deaf7e17b100fc5 100644 (file)
--- a/dmesg.c
+++ b/dmesg.c
@@ -32,16 +32,6 @@ static inline _syscall3(int, klogctl, int, type, char *, b, int, len);
 # include <sys/klog.h>
 #endif
 
-static const char dmesg_usage[] = "dmesg [-c] [-n LEVEL] [-s SIZE]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrints or controls the kernel ring buffer\n\n"
-       "Options:\n"
-       "\t-c\t\tClears the ring buffer's contents after printing\n"
-       "\t-n LEVEL\tSets console logging level\n"
-       "\t-s SIZE\t\tUse a buffer of size SIZE\n"
-#endif
-       ;
-
 int dmesg_main(int argc, char **argv)
 {
        char *buf, c;
diff --git a/du.c b/du.c
index f1a44427abf5c88dca2b45a10e243b34d419e868..147914c9ed85d8db666291ee69ff407b6d3f1e60 100644 (file)
--- a/du.c
+++ b/du.c
 
 typedef void (Display) (long, char *);
 
-static const char du_usage[] =
-       "du [OPTION]... [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSummarizes disk space used for each FILE and/or directory.\n"
-       "Disk space is printed in units of 1024 bytes.\n\n"
-       "Options:\n"
-       "\t-l\tcount sizes many times if hard linked\n"
-       "\t-s\tdisplay only a total for each argument\n"
-#endif
-       ;
-
 static int du_depth = 0;
 static int count_hardlinks = 0;
 
@@ -174,7 +163,7 @@ int du_main(int argc, char **argv)
        return(0);
 }
 
-/* $Id: du.c,v 1.22 2000/07/14 18:38:26 andersen Exp $ */
+/* $Id: du.c,v 1.23 2000/07/16 20:57:15 kraai Exp $ */
 /*
 Local Variables:
 c-file-style: "linux"
index f1805052960f1f0e33446b433be8f21e027550c8..4ce6e8698071a7a99cbce4e3e98e8b8810bd0738 100644 (file)
@@ -38,14 +38,6 @@ struct kbentry {
 #define NR_KEYS         128
 #define MAX_NR_KEYMAPS  256
 
-
-static const char dumpkmap_usage[] = "dumpkmap\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrints out a binary keyboard translation table to standard input.\n"
-#endif
-       ;
-
-
 int dumpkmap_main(int argc, char **argv)
 {
        struct kbentry ke;
diff --git a/dutmp.c b/dutmp.c
index c6bc0c794faea98d0bcd425ab64584f8a0c6c6cd..047b8805fdbec60527b44b328f659c06ec085eff 100644 (file)
--- a/dutmp.c
+++ b/dutmp.c
 #include "messages.c"
 #include <utmp.h>
 
-
-static const char dutmp_usage[] = "dutmp [FILE]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nDump utmp file format (pipe delimited) from FILE\n"
-       "or stdin to stdout.  (i.e. 'dutmp /var/run/utmp')\n"
-#endif
-       ;
-
 extern int dutmp_main(int argc, char **argv)
 {
 
diff --git a/echo.c b/echo.c
index 387ea3fefc5673427a194051800085dd0e78f8f2..73be8f2e2467dc1f53db2748cc1df45c5634859b 100644 (file)
--- a/echo.c
+++ b/echo.c
 #include "internal.h"
 #include <stdio.h>
 
-static const char uname_usage[] =
-       "echo [-neE] [ARG ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrints the specified ARGs to stdout\n\n"
-       "Options:\n"
-       "\t-n\tsuppress trailing newline\n"
-       "\t-e\tinterpret backslash-escaped characters (i.e. \\t=tab etc)\n"
-       "\t-E\tdisable interpretation of backslash-escaped characters\n"
-#endif
-       ;
-
 extern int 
 echo_main(int argc, char** argv)
 {
@@ -58,7 +47,7 @@ echo_main(int argc, char** argv)
                        eflag = 0;
                        break;
                default: 
-                       usage(uname_usage);
+                       usage(echo_usage);
                }
        }
 
index 1f1e9069cc92fa6da36b5eab1d6a2288a92d1d4e..4d4886e19ef73b1110fe7e19fc946c30448562f8 100644 (file)
@@ -85,22 +85,6 @@ static int ncmds = 0; /* number of sed commands */
 
 /*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */
 
-static const char sed_usage[] =
-       "sed [-Vhnef] pattern [files...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\n"
-       "-n\tsuppress automatic printing of pattern space\n"
-       "-e script\tadd the script to the commands to be executed\n"
-       "-f scriptfile\tadd the contents of script-file to the commands to be executed\n"
-       "-h\tdisplay this help message\n"
-       "-V\toutput version information and exit\n"
-       "\n"
-       "If no -e or -f is given, the first non-option argument is taken as the\n"
-       "sed script to interpret. All remaining arguments are names of input\n"
-       "files; if no input files are specified, then the standard input is read.\n"
-#endif
-       ;
-
 #if 0
 static void destroy_cmd_strs()
 {
index d9937355f78f1ac1acfffacc75f5d368d3188486..6bc3e7d66cc05543f5dbd16c18c38c9ac440aa7f 100644 (file)
--- a/fdflush.c
+++ b/fdflush.c
@@ -34,13 +34,8 @@ extern int fdflush_main(int argc, char **argv)
        int value;
        int fd;
 
-       if (argc <= 1 || **(++argv) == '-') {
-               usage("fdflush DEVICE\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-                               "\nForces floppy disk drive to detect disk change\n"
-#endif
-                               );
-       }
+       if (argc <= 1 || **(++argv) == '-')
+               usage(fdflush_usage);
 
        fd = open(*argv, 0);
        if (fd < 0) {
diff --git a/find.c b/find.c
index e18f3c569d19266869fcffcf979bbf82138f921a..1c209aea124eee25caf6642dd6fbeb8746240a02 100644 (file)
--- a/find.c
+++ b/find.c
@@ -32,18 +32,6 @@ static char *pattern = NULL;
 static char *directory = ".";
 static int dereferenceFlag = FALSE;
 
-static const char find_usage[] = "find [PATH...] [EXPRESSION]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSearch for files in a directory hierarchy.  The default PATH is\n"
-       "the current directory; default EXPRESSION is '-print'\n\n"
-       "\nEXPRESSION may consist of:\n"
-       "\t-follow\t\tDereference symbolic links.\n"
-       "\t-name PATTERN\tFile name (leading directories removed) matches PATTERN.\n"
-       "\t-print\t\tprint the full file name followed by a newline to stdout.\n"
-#endif
-       ;
-
-
 static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
 {
        if (pattern == NULL)
index e18f3c569d19266869fcffcf979bbf82138f921a..1c209aea124eee25caf6642dd6fbeb8746240a02 100644 (file)
@@ -32,18 +32,6 @@ static char *pattern = NULL;
 static char *directory = ".";
 static int dereferenceFlag = FALSE;
 
-static const char find_usage[] = "find [PATH...] [EXPRESSION]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSearch for files in a directory hierarchy.  The default PATH is\n"
-       "the current directory; default EXPRESSION is '-print'\n\n"
-       "\nEXPRESSION may consist of:\n"
-       "\t-follow\t\tDereference symbolic links.\n"
-       "\t-name PATTERN\tFile name (leading directories removed) matches PATTERN.\n"
-       "\t-print\t\tprint the full file name followed by a newline to stdout.\n"
-#endif
-       ;
-
-
 static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
 {
        if (pattern == NULL)
index 03945fa2574ba671153595f6e0a0cf1c89353fc3..a2c07c52371513e07ad41408eb9140f9230edbb3 100644 (file)
 extern int optind; /* in unistd.h */
 extern int errno;  /* for use with strerror() */
 
-static const char grep_usage[] =
-       "grep [-ihHnqvs] pattern [files...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSearch for PATTERN in each FILE or standard input.\n\n"
-       "Options:\n"
-       "\t-H\tprefix output lines with filename where match was found\n"
-       "\t-h\tsuppress the prefixing filename on output\n"
-       "\t-i\tignore case distinctions\n"
-       "\t-n\tprint line number with output lines\n"
-       "\t-q\tbe quiet. Returns 0 if result was found, 1 otherwise\n"
-       "\t-v\tselect non-matching lines\n"
-       "\t-s\tsuppress file open/read error messages\n\n"
-#endif
-       ;
-
 /* options */
 static int ignore_case       = 0;
 static int print_filename    = 0;
index 186bfdad736b9dc5a33d0689772f61abf4e5c150..943e10a5744dba68acf23aec5111c3e6a9b45ba7 100644 (file)
 #include <sys/stat.h>
 #include <sys/param.h>
 
-const char which_usage[] =
-       "which [COMMAND ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nLocates a COMMAND.\n"
-#endif
-       ;
-
 extern int which_main(int argc, char **argv)
 {
        char *path_list, *test, *tmp, *path_parsed;
diff --git a/free.c b/free.c
index 7c9d7f10ac1b83604086a5b04888004635ceda80..78298cfb6422a55e04df5d5654cb657d0744555d 100644 (file)
--- a/free.c
+++ b/free.c
 #include <stdio.h>
 #include <errno.h>
 
-const char free_usage[] =
-       "free\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nDisplays the amount of free and used system memory\n"
-#endif
-       ;
-
 extern int free_main(int argc, char **argv)
 {
        struct sysinfo info;
index 927c16946b62eaf434705abdb4921b0a7c3a7f42..2da2427c1abbd221ceac8d1f8e6e37452a5d2555 100644 (file)
 /* From linux/fs.h */
 #define BLKFLSBUF  _IO(0x12,97)        /* flush buffer cache */
 
-
-static const char freeramdisk_usage[] =
-       "freeramdisk DEVICE\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nFrees all memory used by the specified ramdisk.\n"
-#endif
-       ;
-
 extern int
 freeramdisk_main(int argc, char **argv)
 {
index ea27c236ca505a0c9510f19528107f3b8f927702..5807b9af5cd4dd8bd8e3728794dd4240e35e7bf5 100644 (file)
@@ -288,21 +288,6 @@ static void leave(int status)
        exit(status);
 }
 
-const char fsck_minix_usage[] =
-       "Usage: fsck.minix [-larvsmf] /dev/name\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPerforms a consistency check for MINIX filesystems.\n\n"
-       "Options:\n"
-       "\t-l\tLists all filenames\n"
-       "\t-r\tPerform interactive repairs\n"
-       "\t-a\tPerform automatic repairs\n"
-       "\t-v\tverbose\n"
-       "\t-s\tOutputs super-block information\n"
-       "\t-m\tActivates MINIX-like \"mode not cleared\" warnings\n"
-       "\t-f\tForce file system check.\n\n"
-#endif
-       ;
-
 static void show_usage(void)
 {
        usage(fsck_minix_usage);
diff --git a/grep.c b/grep.c
index 03945fa2574ba671153595f6e0a0cf1c89353fc3..a2c07c52371513e07ad41408eb9140f9230edbb3 100644 (file)
--- a/grep.c
+++ b/grep.c
 extern int optind; /* in unistd.h */
 extern int errno;  /* for use with strerror() */
 
-static const char grep_usage[] =
-       "grep [-ihHnqvs] pattern [files...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSearch for PATTERN in each FILE or standard input.\n\n"
-       "Options:\n"
-       "\t-H\tprefix output lines with filename where match was found\n"
-       "\t-h\tsuppress the prefixing filename on output\n"
-       "\t-i\tignore case distinctions\n"
-       "\t-n\tprint line number with output lines\n"
-       "\t-q\tbe quiet. Returns 0 if result was found, 1 otherwise\n"
-       "\t-v\tselect non-matching lines\n"
-       "\t-s\tsuppress file open/read error messages\n\n"
-#endif
-       ;
-
 /* options */
 static int ignore_case       = 0;
 static int print_filename    = 0;
index de68bd19b41195035755305fe38bd772242a53f3..b29bdf7c124d69878fab4eea3dd31e3aae426520 100644 (file)
--- a/gunzip.c
+++ b/gunzip.c
 #include "internal.h"
 #include <getopt.h>
 
-static const char gunzip_usage[] =
-       "gunzip [OPTION]... FILE\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nUncompress FILE (or standard input if FILE is '-').\n\n"
-       "Options:\n"
-
-       "\t-c\tWrite output to standard output\n"
-       "\t-t\tTest compressed file integrity\n"
-#endif
-       ;
-
-       
-       /* These defines are very important for BusyBox.  Without these,
+/* These defines are very important for BusyBox.  Without these,
  * huge chunks of ram are pre-allocated making the BusyBox bss 
  * size Freaking Huge(tm), which is a bad thing.*/
 #define SMALL_MEM
diff --git a/gzip.c b/gzip.c
index 8bc67d9c608c904c71003a9bb645424301a6843b..98ce259caf892ae45932b2695734153c56a3e7fe 100644 (file)
--- a/gzip.c
+++ b/gzip.c
 #define SMALL_MEM
 #define DYN_ALLOC
 
-
-static const char gzip_usage[] =
-       "gzip [OPTION]... FILE\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCompress FILE with maximum compression.\n"
-       "When FILE is '-', reads standard input.  Implies -c.\n\n"
-
-       "Options:\n"
-       "\t-c\tWrite output to standard output instead of FILE.gz\n"
-#endif
-       ;
-
-
 /* I don't like nested includes, but the string and io functions are used
  * too often
  */
diff --git a/head.c b/head.c
index b82678dc23da622baf00ec5d17c86cc0964b9c91..58b3cae682733b582e592a5e9d5e1550f3870aa6 100644 (file)
--- a/head.c
+++ b/head.c
 #include <errno.h>
 #include <stdio.h>
 
-const char head_usage[] =
-       "head [OPTION] [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint first 10 lines of each FILE to standard output.\n"
-       "With more than one FILE, precede each with a header giving the\n"
-       "file name. With no FILE, or when FILE is -, read standard input.\n\n"
-
-       "Options:\n" "\t-n NUM\t\tPrint first NUM lines instead of first 10\n"
-#endif
-       ;
-
 int head(int len, FILE * src)
 {
        int i;
@@ -111,4 +100,4 @@ int head_main(int argc, char **argv)
        return(0);
 }
 
-/* $Id: head.c,v 1.12 2000/07/14 01:51:25 kraai Exp $ */
+/* $Id: head.c,v 1.13 2000/07/16 20:57:15 kraai Exp $ */
index 60f66c0736f75e041f07f582b2f44685362b5bc4..77b545dedbae65b5a4a16f48650f33d05ee34a11 100644 (file)
@@ -1,6 +1,6 @@
 /* vi: set sw=4 ts=4: */
 /*
- * $Id: hostname.c,v 1.11 2000/07/14 01:51:25 kraai Exp $
+ * $Id: hostname.c,v 1.12 2000/07/16 20:57:15 kraai Exp $
  * Mini hostname implementation for busybox
  *
  * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
 #include <unistd.h>
 #include <stdio.h>
 
-static const char *hostname_usage =
-       "hostname [OPTION] {hostname | -F file}\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nGet or set the hostname or DNS domain name. If a hostname is given\n"
-       "(or a file with the -F parameter), the host name will be set.\n\n"
-       "Options:\n"
-       "\t-s\t\tShort\n"
-
-       "\t-i\t\tAddresses for the hostname\n"
-       "\t-d\t\tDNS domain name\n"
-       "\t-F FILE\t\tUse the contents of FILE to specify the hostname\n"
-#endif
-       ;
-
-
 void do_sethostname(char *s, int isfile)
 {
        FILE *f;
diff --git a/id.c b/id.c
index 69dfe2658c855a5ef7c0be767ca5c3d64b6b90bd..56a2e279f15d1889f18324f45191ff4630ea0630 100644 (file)
--- a/id.c
+++ b/id.c
 #include <grp.h>
 #include <sys/types.h>
 
-static const char id_usage[] =
-       "id [OPTIONS]... [USERNAME]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint information for USERNAME or the current user\n\n"
-       "Options:\n"
-       "\t-g\tprints only the group ID\n"
-       "\t-u\tprints only the user ID\n"
-       "\t-r\tprints the real user ID instead of the effective ID (with -ug)\n\n"
-#endif
-       ;
-
 extern int id_main(int argc, char **argv)
 {
        int no_user = 0, no_group = 0, print_real = 0;
index 97c360be79ea2b2845cfbb541f3af8bcf4ba967a..9daedf9386cc2c2857fdc8257884643706394be5 100644 (file)
--- a/insmod.c
+++ b/insmod.c
@@ -70,7 +70,7 @@
 #ifndef MODUTILS_MODULE_H
 #define MODUTILS_MODULE_H 1
 
-#ident "$Id: insmod.c,v 1.17 2000/07/14 16:23:32 proski Exp $"
+#ident "$Id: insmod.c,v 1.18 2000/07/16 20:57:15 kraai Exp $"
 
 /* This file contains the structures used by the 2.0 and 2.1 kernels.
    We do not use the kernel headers directly because we do not wish
@@ -276,7 +276,7 @@ int delete_module(const char *);
 #ifndef MODUTILS_OBJ_H
 #define MODUTILS_OBJ_H 1
 
-#ident "$Id: insmod.c,v 1.17 2000/07/14 16:23:32 proski Exp $"
+#ident "$Id: insmod.c,v 1.18 2000/07/16 20:57:15 kraai Exp $"
 
 /* The relocatable object is manipulated using elfin types.  */
 
@@ -560,16 +560,6 @@ _syscall2(unsigned long, create_module, const char *, name, size_t, size)
 #endif
 static char m_filename[BUFSIZ + 1] = "\0";
 static char m_fullName[BUFSIZ + 1] = "\0";
-static const char insmod_usage[] =
-       "insmod [OPTION]... MODULE [symbol=value]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nLoads the specified kernel modules into the kernel.\n\n"
-       "Options:\n"
-       "\t-f\tForce module to load into the wrong kernel version.\n"
-       "\t-k\tMake module autoclean-able.\n"
-       "\t-v\tverbose output\n" "\t-x\tdo not export externs\n"
-#endif
-;
 
 /*======================================================================*/
 
index 50b7869cdd39cf611c6df878620c387cc2ec93a1..a192679b9548b6cc6336196f763020f216465a32 100644 (file)
@@ -208,6 +208,98 @@ extern int which_main(int argc, char** argv);
 extern int whoami_main(int argc, char** argv);
 extern int yes_main(int argc, char** argv);
 
+extern const char ar_usage[];
+extern const char basename_usage[];
+extern const char cat_usage[];
+extern const char chgrp_usage[];
+extern const char chmod_usage[];
+extern const char chown_usage[];
+extern const char chroot_usage[];
+extern const char chvt_usage[];
+extern const char cp_usage[];
+extern const char cut_usage[];
+extern const char date_usage[];
+extern const char dc_usage[];
+extern const char dd_usage[];
+extern const char deallocvt_usage[];
+extern const char df_usage[];
+extern const char dirname_usage[];
+extern const char dmesg_usage[];
+extern const char du_usage[];
+extern const char dumpkmap_usage[];
+extern const char dutmp_usage[];
+extern const char echo_usage[];
+extern const char fdflush_usage[];
+extern const char find_usage[];
+extern const char free_usage[];
+extern const char freeramdisk_usage[];
+extern const char fsck_minix_usage[];
+extern const char grep_usage[];
+extern const char gunzip_usage[];
+extern const char gzip_usage[];
+extern const char head_usage[];
+extern const char hostname_usage[];
+extern const char id_usage[];
+extern const char insmod_usage[];
+extern const char kill_usage[];
+extern const char killall_usage[];
+extern const char length_usage[];
+extern const char ln_usage[];
+extern const char loadacm_usage[];
+extern const char loadfont_usage[];
+extern const char loadkmap_usage[];
+extern const char logger_usage[];
+extern const char logname_usage[];
+extern const char ls_usage[];
+extern const char makedevs_usage[];
+extern const char md5sum_usage[];
+extern const char mkdir_usage[];
+extern const char mkfifo_usage[];
+extern const char mkfs_minix_usage[];
+extern const char mknod_usage[];
+extern const char mkswap_usage[];
+extern const char mktemp_usage[];
+extern const char more_usage[];
+extern const char mount_usage[]; 
+extern const char mt_usage[];
+extern const char mv_usage[];
+extern const char nc_usage[];
+extern const char nslookup_usage[];
+extern const char ping_usage[];
+extern const char printf_usage[];
+extern const char ps_usage[];
+extern const char rm_usage[];
+extern const char rmdir_usage[];
+extern const char rmmod_usage[];
+extern const char sed_usage[];
+extern const char setkeycodes_usage[];
+extern const char shell_usage[];
+extern const char sleep_usage[];
+extern const char sort_usage[];
+extern const char swapoff_usage[];
+extern const char swapon_usage[];
+extern const char sync_usage[];
+extern const char syslogd_usage[];
+extern const char tail_usage[];
+extern const char tar_usage[];
+extern const char tee_usage[];
+extern const char telnet_usage[];
+extern const char test_usage[];
+extern const char touch_usage[];
+extern const char tr_usage[];
+extern const char tty_usage[];
+extern const char umount_usage[];
+extern const char uname_usage[];
+extern const char uniq_usage[];
+extern const char update_usage[];
+extern const char usleep_usage[];
+extern const char uudecode_usage[];
+extern const char uuencode_usage[];
+extern const char wc_usage[];
+extern const char which_usage[];
+extern const char whoami_usage[];
+extern const char yes_usage[];
+
 extern char *applet_name;
 
 extern void usage(const char *usage) __attribute__ ((noreturn));
diff --git a/kill.c b/kill.c
index 44cb38395fb4012dcd2a16fd9ef68b782f63bd00..da46620dd462ddb8fba6db92a391b7473e6f1fd4 100644 (file)
--- a/kill.c
+++ b/kill.c
 #include <sys/stat.h>
 #include <unistd.h>
 
-static const char *kill_usage =
-       "kill [-signal] process-id [process-id ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSend a signal (default is SIGTERM) to the specified process(es).\n\n"
-       "Options:\n" "\t-l\tList all signal names and numbers.\n\n"
-#endif
-       ;
-
-#ifdef BB_KILLALL
-static const char *killall_usage =
-       "killall [-signal] process-name [process-name ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSend a signal (default is SIGTERM) to the specified process(es).\n\n"
-       "Options:\n" "\t-l\tList all signal names and numbers.\n\n"
-#endif
-#endif
-       ;
-
 #define KILL   0
 #define KILLALL        1
 
diff --git a/lash.c b/lash.c
index d829b6b29e932eb5e8d319dd7dbcf794338aa393..9b3435304926289db4301c2ccd7c781a7e63361c 100644 (file)
--- a/lash.c
+++ b/lash.c
@@ -137,14 +137,6 @@ static struct builtInCommand bltins_forking[] = {
        {NULL, NULL, NULL, NULL}
 };
 
-static const char shell_usage[] =
-       "sh [FILE]...\n"
-       "   or: sh -c command [args]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nlash: The BusyBox command interpreter (shell).\n\n"
-#endif
-       ;
-
 static char *prompt = "# ";
 static char *cwd = NULL;
 static char *local_pending_command = NULL;
index 82f50c159cd813bf03b4ab2abfaeb5d50b728c59..cf4fb1c079dba9812e32d7d668c886c0b6b6fa2d 100644 (file)
--- a/length.c
+++ b/length.c
@@ -4,13 +4,6 @@
 #include <string.h>
 #include <stdio.h>
 
-const char length_usage[] =
-       "length STRING\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrints out the length of the specified STRING.\n"
-#endif
-       ;
-
 extern int length_main(int argc, char **argv)
 {
        if (argc != 2 || **(argv + 1) == '-')
diff --git a/ln.c b/ln.c
index 9f7774380be7d0d053b2a28034b41b3f59cee2c4..8b8fa1c5887eadc9a5bf00c433f33c05e2098ddb 100644 (file)
--- a/ln.c
+++ b/ln.c
 #include <dirent.h>
 #include <errno.h>
 
-static const char ln_usage[] =
-       "ln [OPTION] TARGET... LINK_NAME|DIRECTORY\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCreate a link named LINK_NAME or DIRECTORY to the specified TARGET\n"
-       "\nYou may use '--' to indicate that all following arguments are non-options.\n\n"
-       "Options:\n"
-       "\t-s\tmake symbolic links instead of hard links\n"
-
-       "\t-f\tremove existing destination files\n"
-       "\t-n\tno dereference symlinks - treat like normal file\n"
-#endif
-       ;
-
 static int symlinkFlag = FALSE;
 static int removeoldFlag = FALSE;
 static int followLinks = TRUE;
index 9eebf3bb57964cd585e03714a990ea6c35b6e689..2d70ffc5d206323ab7b512bdd9b0b62d98e7784d 100644 (file)
--- a/loadacm.c
+++ b/loadacm.c
 #include <sys/ioctl.h>
 #include <sys/kd.h>
 
-static const char loadacm_usage[] = "loadacm\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nLoads an acm from standard input.\n"
-#endif
-       ;
-
 typedef unsigned short unicode;
 
 static long int ctoi(unsigned char *s, int *is_unicode);
index 46a7574c0d616bf2556f0bbcf0dd4cb64aed5560..622142925a53ace8a342fdfaf2335841737a2b37 100644 (file)
 #define PSF_MAXMODE    0x03
 #define PSF_SEPARATOR  0xFFFF
 
-static const char loadfont_usage[] = "loadfont\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "Loads a console font from standard input.\n"
-#endif
-       ;
-
 struct psf_header {
        unsigned char magic1, magic2;   /* Magic number */
        unsigned char mode;                     /* PSF font mode */
index 72247a6e4b6c49d5274a5fdc1f417317ef33c408..488585f9c816bf99c12223a7850f81b015b70e32 100644 (file)
@@ -38,14 +38,6 @@ struct kbentry {
 #define NR_KEYS         128
 #define MAX_NR_KEYMAPS  256
 
-
-static const char loadkmap_usage[] = "loadkmap\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nLoads a binary keyboard translation table from standard input.\n"
-#endif
-       ;
-
-
 int loadkmap_main(int argc, char **argv)
 {
        struct kbentry ke;
index 981748bb50559ad122b1a7cf0b7ed996375bd704..0e1ce8dce7e439539d2d1e966d6033f3bdcae042 100644 (file)
--- a/logger.c
+++ b/logger.c
@@ -47,20 +47,6 @@ extern CODE prioritynames[];
 extern CODE facilitynames[];
 #endif
 
-static const char logger_usage[] =
-       "logger [OPTION]... [MESSAGE]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nWrite MESSAGE to the system log.  If MESSAGE is '-', log stdin.\n\n"
-       "Options:\n"
-       "\t-s\tLog to stderr as well as the system log.\n"
-       "\t-t\tLog using the specified tag (defaults to user name).\n"
-
-       "\t-p\tEnter the message with the specified priority.\n"
-       "\t\tThis may be numerical or a ``facility.level'' pair.\n"
-#endif
-       ;
-
-
 /* Decode a symbolic name to a numeric value 
  * this function is based on code
  * Copyright (c) 1983, 1993
index 12ebfbde69c9eeffa83ffb4ff75ac49fa77b915f..a0aff42d648611b9c840e86ed10baf42e24c3f1a 100644 (file)
--- a/logname.c
+++ b/logname.c
 #include "internal.h"
 #include <stdio.h>
 
-static const char logname_usage[] = "logname\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint the name of the current user.\n"
-#endif
-       ;
-
 extern int logname_main(int argc, char **argv)
 {
        char *user = xmalloc(9);
diff --git a/ls.c b/ls.c
index 0644cde877e7e4eb777a039a7a1afba61c5fcd6a..e56e3bcfb038023015dd7c64e8d3c0b84c9433f8 100644 (file)
--- a/ls.c
+++ b/ls.c
@@ -427,63 +427,6 @@ static int list_item(const char *name)
        return 1;
 }
 
-static const char ls_usage[] = "ls [-1a"
-#ifdef BB_FEATURE_LS_TIMESTAMPS
-       "c"
-#endif
-       "d"
-#ifdef BB_FEATURE_LS_TIMESTAMPS
-       "e"
-#endif
-       "ln"
-#ifdef BB_FEATURE_LS_FILETYPES
-       "p"
-#endif
-#ifdef BB_FEATURE_LS_TIMESTAMPS
-       "u"
-#endif
-       "xAC"
-#ifdef BB_FEATURE_LS_FILETYPES
-       "F"
-#endif
-#ifdef BB_FEATURE_LS_RECURSIVE
-       "R"
-#endif
-       "] [filenames...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nList directory contents\n\n"
-       "Options:\n"
-       "\t-a\tdo not hide entries starting with .\n"
-#ifdef BB_FEATURE_LS_TIMESTAMPS
-       "\t-c\twith -l: show ctime (the time of last\n"
-    "\t\tmodification of file status information)\n"
-#endif
-       "\t-d\tlist directory entries instead of contents\n"
-#ifdef BB_FEATURE_LS_TIMESTAMPS
-       "\t-e\tlist both full date and full time\n"
-#endif
-       "\t-l\tuse a long listing format\n"
-       "\t-n\tlist numeric UIDs and GIDs instead of names\n"
-#ifdef BB_FEATURE_LS_FILETYPES
-       "\t-p\tappend indicator (one of /=@|) to entries\n"
-#endif
-#ifdef BB_FEATURE_LS_TIMESTAMPS
-       "\t-u\twith -l: show access time (the time of last\n"
-       "\t\taccess of the file)\n"
-#endif
-       "\t-x\tlist entries by lines instead of by columns\n"
-       "\t-A\tdo not list implied . and ..\n"
-       "\t-C\tlist entries by columns\n"
-#ifdef BB_FEATURE_LS_FILETYPES
-       "\t-F\tappend indicator (one of */=@|) to entries\n"
-#endif
-#ifdef BB_FEATURE_LS_RECURSIVE
-       "\t-R\tlist subdirectories recursively\n"
-#endif
-#endif
-       ;
-
-
 #ifdef BB_FEATURE_LS_RECURSIVE
 static int dirAction(const char *fileName, struct stat *statbuf, void* junk)
 {
index 5072095b532cab61e67ed556ed428e17c3283996..99dbc0bd5f4294b74ecc3aafb1db4647dc8f9893 100644 (file)
 #include <sys/types.h>
 #include <sys/stat.h>
 
-static const char makedevs_usage[] =
-       "makedevs NAME TYPE MAJOR MINOR FIRST LAST [s]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCreates a range of block or character special files\n\n"
-       "TYPEs include:\n"
-       "\tb:\tMake a block (buffered) device.\n"
-       "\tc or u:\tMake a character (un-buffered) device.\n"
-       "\tp:\tMake a named pipe. MAJOR and MINOR are ignored for named pipes.\n\n"
-       "FIRST specifies the number appended to NAME to create the first device.\n"
-       "LAST specifies the number of the last item that should be created.\n"
-       "If 's' is the last argument, the base device is created as well.\n\n"
-       "For example:\n"
-       "\tmakedevs /dev/ttyS c 4 66 2 63   ->  ttyS2-ttyS63\n"
-       "\tmakedevs /dev/hda b 3 0 0 8 s    ->  hda,hda1-hda8\n"
-#endif
-       ;
-
 int makedevs_main(int argc, char **argv)
 {
 
index e6f1c86b4a00e8e6832d0ca469f8dc5ef57bd340..fad563fe7f977dd1a9dc404a5da65653ea04755a 100644 (file)
--- a/md5sum.c
+++ b/md5sum.c
@@ -582,23 +582,6 @@ static int status_only = 0; /* With -c, don't generate any output.
 static int warn = 0; /* With -w, print a message to standard error warning
                         about each improperly formatted MD5 checksum line */
 
-static const char md5sum_usage[] =
-    "md5sum [OPTION] [FILE]...\n"
-    "or:    md5sum [OPTION] -c [FILE]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-    "\nPrint or check MD5 checksums.\n\n"
-    "Options:\n"
-    "With no FILE, or when FILE is -, read standard input.\n\n"
-    "\t-b\tread files in binary mode\n"
-    "\t-c\tcheck MD5 sums against given list\n"
-    "\t-t\tread files in text mode (default)\n"
-    "\t-g\tread a string\n"
-    "\nThe following two options are useful only when verifying checksums:\n"
-    "\t-s,\tdon't output anything, status code shows success\n"
-    "\t-w,\twarn about improperly formated MD5 checksum lines\n"
-#endif
-;
-
 static int split_3(char *s,
                    size_t s_len,
                    unsigned char **u,
index 7b13cb943698636d4840b3b64354cb89400516df..fac48e895a73da16eb00059aef05c08e7c6a5f4d 100644 (file)
@@ -8,14 +8,6 @@
 
 /* Tiny RPN calculator, because "expr" didn't give me bitwise operations. */
 
-static const char dc_usage[] = "dc expression ...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-               "\nThis is a Tiny RPN calculator that understands the\n"
-               "following operations: +, -, /, *, and, or, not, eor.\n"
-               "i.e. 'dc 2 2 add' -> 4, and 'dc 8 8 \\* 2 2 + /' -> 16\n"
-#endif
-               ;
-
 static double stack[100];
 static unsigned int pointer;
 
index c6bc0c794faea98d0bcd425ab64584f8a0c6c6cd..047b8805fdbec60527b44b328f659c06ec085eff 100644 (file)
 #include "messages.c"
 #include <utmp.h>
 
-
-static const char dutmp_usage[] = "dutmp [FILE]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nDump utmp file format (pipe delimited) from FILE\n"
-       "or stdin to stdout.  (i.e. 'dutmp /var/run/utmp')\n"
-#endif
-       ;
-
 extern int dutmp_main(int argc, char **argv)
 {
 
index 5072095b532cab61e67ed556ed428e17c3283996..99dbc0bd5f4294b74ecc3aafb1db4647dc8f9893 100644 (file)
 #include <sys/types.h>
 #include <sys/stat.h>
 
-static const char makedevs_usage[] =
-       "makedevs NAME TYPE MAJOR MINOR FIRST LAST [s]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCreates a range of block or character special files\n\n"
-       "TYPEs include:\n"
-       "\tb:\tMake a block (buffered) device.\n"
-       "\tc or u:\tMake a character (un-buffered) device.\n"
-       "\tp:\tMake a named pipe. MAJOR and MINOR are ignored for named pipes.\n\n"
-       "FIRST specifies the number appended to NAME to create the first device.\n"
-       "LAST specifies the number of the last item that should be created.\n"
-       "If 's' is the last argument, the base device is created as well.\n\n"
-       "For example:\n"
-       "\tmakedevs /dev/ttyS c 4 66 2 63   ->  ttyS2-ttyS63\n"
-       "\tmakedevs /dev/hda b 3 0 0 8 s    ->  hda,hda1-hda8\n"
-#endif
-       ;
-
 int makedevs_main(int argc, char **argv)
 {
 
index 247d16d24e0b4ef44ab2f24ca7acfdf044d114a1..2ec078503e250a3510504031181c8ad5694fe1bc 100644 (file)
 #include <stdio.h>
 #include <errno.h>
 
-const char mktemp_usage[] =
-       "mktemp [-q] TEMPLATE\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCreates a temporary file with its name based on TEMPLATE.\n"
-       "TEMPLATE is any name with six `Xs' (i.e. /tmp/temp.XXXXXX).\n"
-#endif
-       ;
-
 extern int mktemp_main(int argc, char **argv)
 {
        if (argc != 2 && (argc != 3 || strcmp(argv[1], "-q")))
index 4ab4782703551363cb73088ab76a6a5ba04e13ac..087819e72af6f0e859151e17b146cb80fbaa5d30 100644 (file)
@@ -4,12 +4,6 @@
 #include <sys/mtio.h>
 #include <sys/fcntl.h>
 
-static const char mt_usage[] = "mt [-f device] opcode value\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-                       "\nControl magnetic tape drive operation\n"
-#endif
-                       ;
-
 struct mt_opcodes {
        char *name;
        short value;
index f94346172e4e37f39afaa03de8f2a3af3a9c86d7..0bdc90eaa83154767cb46d4e3c57ad6269cb62db 100644 (file)
 static _syscall2(int, bdflush, int, func, int, data);
 #endif                                                 /* __GLIBC__ */
 
-
-static char update_usage[] =
-       "update [options]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPeriodically flushes filesystem buffers.\n\n"
-       "Options:\n"
-       "\t-S\tforce use of sync(2) instead of flushing\n"
-       "\t-s SECS\tcall sync this often (default 30)\n"
-       "\t-f SECS\tflush some buffers this often (default 5)\n"
-#endif
-       ;
-
 static unsigned int sync_duration = 30;
 static unsigned int flush_duration = 5;
 static int use_sync = 0;
diff --git a/mkdir.c b/mkdir.c
index f6e08cadc076dae316354da7eeedc3bded56d37c..f824cdcb671bb9bc5804d52a9b4a040b63b51b70 100644 (file)
--- a/mkdir.c
+++ b/mkdir.c
 #include <stdio.h>
 #include <errno.h>
 
-static const char mkdir_usage[] =
-       "mkdir [OPTION] DIRECTORY...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCreate the DIRECTORY(ies), if they do not already exist\n\n"
-       "Options:\n"
-
-       "\t-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n"
-       "\t-p\tno error if existing, make parent directories as needed\n"
-#endif
-       ;
-
-
 static int parentFlag = FALSE;
 static mode_t mode = 0777;
 
index f701a97d58f50b8124196507baf52be7d4145689..3db17bbbcf323c9ad1eeabd564c888b2af6f36f0 100644 (file)
--- a/mkfifo.c
+++ b/mkfifo.c
 #include <sys/stat.h>
 #include <errno.h>
 
-static const char mkfifo_usage[] = "mkfifo [OPTIONS] name\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCreates a named pipe (identical to 'mknod name p')\n\n"
-       "Options:\n"
-       "\t-m\tcreate the pipe using the specified mode (default a=rw)\n"
-#endif
-       ;
-
 extern int mkfifo_main(int argc, char **argv)
 {
        char *thisarg;
index 9ae4b569cec82f12096a7e82c21421dd2e520022..dec310d3072a419611c159fb8c08b900a1424a27 100644 (file)
@@ -267,19 +267,6 @@ static volatile void die(char *str)
        exit(8);
 }
 
-const char mkfs_minix_usage[] =
-       "mkfs.minix [-c | -l filename] [-nXX] [-iXX] /dev/name [blocks]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nMake a MINIX filesystem.\n\n"
-       "Options:\n"
-       "\t-c\t\tCheck the device for bad blocks\n"
-       "\t-n [14|30]\tSpecify the maximum length of filenames\n"
-       "\t-i INODES\tSpecify the number of inodes for the filesystem\n"
-       "\t-l FILENAME\tRead the bad blocks list from FILENAME\n"
-       "\t-v\t\tMake a Minix version 2 filesystem\n\n"
-#endif
-       ;
-
 static volatile void show_usage() __attribute__ ((noreturn));
 static volatile void show_usage()
 {
diff --git a/mknod.c b/mknod.c
index ac96817ee20b99119585b5a21573494d3054d723..b51c8f3e3f66b4a511a8de2e7f99f405113703a6 100644 (file)
--- a/mknod.c
+++ b/mknod.c
 #include <fcntl.h>
 #include <unistd.h>
 
-static const char mknod_usage[] = "mknod [OPTIONS] NAME TYPE MAJOR MINOR\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCreate a special file (block, character, or pipe).\n\n"
-       "Options:\n"
-       "\t-m\tcreate the special file using the specified mode (default a=rw)\n\n"
-       "TYPEs include:\n"
-       "\tb:\tMake a block (buffered) device.\n"
-       "\tc or u:\tMake a character (un-buffered) device.\n"
-       "\tp:\tMake a named pipe. MAJOR and MINOR are ignored for named pipes.\n"
-#endif
-       ;
-
 int mknod_main(int argc, char **argv)
 {
        char *thisarg;
index 5a33945c838f7b1b76ed6c571b483503260ecdfd..eacd8816cdcc6ddce520eb8f496f6132052caf59 100644 (file)
--- a/mkswap.c
+++ b/mkswap.c
 #include <asm/page.h>                  /* for PAGE_SIZE and PAGE_SHIFT */
                                /* we also get PAGE_SIZE via getpagesize() */
 
-
-static const char mkswap_usage[] =
-       "mkswap [-c] [-v0|-v1] device [block-count]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrepare a disk partition to be used as a swap partition.\n\n"
-       "Options:\n" "\t-c\t\tCheck for read-ability.\n"
-       "\t-v0\t\tMake version 0 swap [max 128 Megs].\n"
-       "\t-v1\t\tMake version 1 swap [big!] (default for kernels > 2.1.117).\n"
-
-       "\tblock-count\tNumber of block to use (default is entire partition).\n"
-#endif
-       ;
-
-
 #ifndef _IO
 /* pre-1.3.45 */
 #define BLKGETSIZE 0x1260
index 247d16d24e0b4ef44ab2f24ca7acfdf044d114a1..2ec078503e250a3510504031181c8ad5694fe1bc 100644 (file)
--- a/mktemp.c
+++ b/mktemp.c
 #include <stdio.h>
 #include <errno.h>
 
-const char mktemp_usage[] =
-       "mktemp [-q] TEMPLATE\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCreates a temporary file with its name based on TEMPLATE.\n"
-       "TEMPLATE is any name with six `Xs' (i.e. /tmp/temp.XXXXXX).\n"
-#endif
-       ;
-
 extern int mktemp_main(int argc, char **argv)
 {
        if (argc != 2 && (argc != 3 || strcmp(argv[1], "-q")))
index 97c360be79ea2b2845cfbb541f3af8bcf4ba967a..9daedf9386cc2c2857fdc8257884643706394be5 100644 (file)
@@ -70,7 +70,7 @@
 #ifndef MODUTILS_MODULE_H
 #define MODUTILS_MODULE_H 1
 
-#ident "$Id: insmod.c,v 1.17 2000/07/14 16:23:32 proski Exp $"
+#ident "$Id: insmod.c,v 1.18 2000/07/16 20:57:15 kraai Exp $"
 
 /* This file contains the structures used by the 2.0 and 2.1 kernels.
    We do not use the kernel headers directly because we do not wish
@@ -276,7 +276,7 @@ int delete_module(const char *);
 #ifndef MODUTILS_OBJ_H
 #define MODUTILS_OBJ_H 1
 
-#ident "$Id: insmod.c,v 1.17 2000/07/14 16:23:32 proski Exp $"
+#ident "$Id: insmod.c,v 1.18 2000/07/16 20:57:15 kraai Exp $"
 
 /* The relocatable object is manipulated using elfin types.  */
 
@@ -560,16 +560,6 @@ _syscall2(unsigned long, create_module, const char *, name, size_t, size)
 #endif
 static char m_filename[BUFSIZ + 1] = "\0";
 static char m_fullName[BUFSIZ + 1] = "\0";
-static const char insmod_usage[] =
-       "insmod [OPTION]... MODULE [symbol=value]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nLoads the specified kernel modules into the kernel.\n\n"
-       "Options:\n"
-       "\t-f\tForce module to load into the wrong kernel version.\n"
-       "\t-k\tMake module autoclean-able.\n"
-       "\t-v\tverbose output\n" "\t-x\tdo not export externs\n"
-#endif
-;
 
 /*======================================================================*/
 
index 3158686f058c112b41985652ba54bf6f7386d0f4..da10b7fcf954fbc7cd429ae160fa9e98c084bac9 100644 (file)
 /* And the system call of the day is...  */
 _syscall1(int, delete_module, const char *, name)
 
-
-static const char rmmod_usage[] =
-       "rmmod [OPTION]... [MODULE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nUnloads the specified kernel modules from the kernel.\n\n"
-       "Options:\n" 
-       "\t-a\tTry to remove all unused kernel modules.\n"
-#endif
-       ;
-
-
-
 extern int rmmod_main(int argc, char **argv)
 {
        if (argc <= 1) {
diff --git a/more.c b/more.c
index 91c28156386d14c49aa99b836440c451c0ecfab3..2334576c05c228322f82797cad49651ef4a5554b 100644 (file)
--- a/more.c
+++ b/more.c
 #define bb_need_help
 #include "messages.c"
 
-static const char more_usage[] = "more [FILE ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nMore is a filter for viewing FILE one screenful at a time.\n"
-#endif
-       ;
-
 /* ED: sparc termios is broken: revert back to old termio handling. */
 #ifdef BB_FEATURE_USE_TERMIOS
 #      if #cpu(sparc)
diff --git a/mount.c b/mount.c
index addeb0925eb4d20abe396929b2a3d10da57da908..610d12d3419901ea3ab4bec234cd66fc4a9f93f8 100644 (file)
--- a/mount.c
+++ b/mount.c
@@ -80,38 +80,6 @@ extern int umount2 (__const char *__special_file, int __flags);
 
 extern const char mtab_file[]; /* Defined in utility.c */
 
-static const char mount_usage[] = 
-       "mount [flags] device directory [-o options,more-options]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nMount a filesystem\n\n"
-       "Flags:\n" 
-       "\t-a:\t\tMount all filesystems in fstab.\n"
-#ifdef BB_MTAB
-       "\t-f:\t\t\"Fake\" mount. Add entry to mount table but don't mount it.\n"
-       "\t-n:\t\tDon't write a mount table entry.\n"
-#endif
-       "\t-o option:\tOne of many filesystem options, listed below.\n"
-       "\t-r:\t\tMount the filesystem read-only.\n"
-       "\t-t fs-type:\tSpecify the filesystem type.\n"
-       "\t-w:\t\tMount for reading and writing (default).\n"
-       "\n"
-       "Options for use with the \"-o\" flag:\n"
-       "\tasync/sync:\tWrites are asynchronous / synchronous.\n"
-       "\tatime/noatime:\tEnable / disable updates to inode access times.\n"
-       "\tdev/nodev:\tAllow use of special device files / disallow them.\n"
-       "\texec/noexec:\tAllow use of executable files / disallow them.\n"
-#if defined BB_FEATURE_MOUNT_LOOP
-       "\tloop:\t\tMounts a file via loop device.\n"
-#endif
-       "\tsuid/nosuid:\tAllow set-user-id-root programs / disallow them.\n"
-       "\tremount:\tRe-mount a currently-mounted filesystem, changing its flags.\n"
-       "\tro/rw:\t\tMount for read-only / read-write.\n"
-       "\nThere are EVEN MORE flags that are specific to each filesystem.\n"
-       "You'll have to see the written documentation for those.\n"
-#endif
-       ;
-
-
 struct mount_options {
        const char *name;
        unsigned long and;
diff --git a/mt.c b/mt.c
index 4ab4782703551363cb73088ab76a6a5ba04e13ac..087819e72af6f0e859151e17b146cb80fbaa5d30 100644 (file)
--- a/mt.c
+++ b/mt.c
@@ -4,12 +4,6 @@
 #include <sys/mtio.h>
 #include <sys/fcntl.h>
 
-static const char mt_usage[] = "mt [-f device] opcode value\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-                       "\nControl magnetic tape drive operation\n"
-#endif
-                       ;
-
 struct mt_opcodes {
        char *name;
        short value;
diff --git a/nc.c b/nc.c
index b6afe6ffad4a80549a5abcae0f5a4a8ca848d690..a544f32fc7488c662fa356d73373d3df55bf0135 100644 (file)
--- a/nc.c
+++ b/nc.c
 
 #define BUFSIZE 100
 
-static const char nc_usage[] = "nc [IP] [port]\n" 
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nNetcat opens a pipe to IP:port\n"
-#endif
-       ;
-
 int nc_main(int argc, char **argv)
 {
        int sfd;
index 60f66c0736f75e041f07f582b2f44685362b5bc4..77b545dedbae65b5a4a16f48650f33d05ee34a11 100644 (file)
@@ -1,6 +1,6 @@
 /* vi: set sw=4 ts=4: */
 /*
- * $Id: hostname.c,v 1.11 2000/07/14 01:51:25 kraai Exp $
+ * $Id: hostname.c,v 1.12 2000/07/16 20:57:15 kraai Exp $
  * Mini hostname implementation for busybox
  *
  * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
 #include <unistd.h>
 #include <stdio.h>
 
-static const char *hostname_usage =
-       "hostname [OPTION] {hostname | -F file}\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nGet or set the hostname or DNS domain name. If a hostname is given\n"
-       "(or a file with the -F parameter), the host name will be set.\n\n"
-       "Options:\n"
-       "\t-s\t\tShort\n"
-
-       "\t-i\t\tAddresses for the hostname\n"
-       "\t-d\t\tDNS domain name\n"
-       "\t-F FILE\t\tUse the contents of FILE to specify the hostname\n"
-#endif
-       ;
-
-
 void do_sethostname(char *s, int isfile)
 {
        FILE *f;
index b6afe6ffad4a80549a5abcae0f5a4a8ca848d690..a544f32fc7488c662fa356d73373d3df55bf0135 100644 (file)
 
 #define BUFSIZE 100
 
-static const char nc_usage[] = "nc [IP] [port]\n" 
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nNetcat opens a pipe to IP:port\n"
-#endif
-       ;
-
 int nc_main(int argc, char **argv)
 {
        int sfd;
index 54f37c8481d690b12f456b429fd1bd789a45601d..10d36b2d10bf867d116e6563c93524e9cc3519b0 100644 (file)
  |  + find out how the real nslookup gets the default name server
  */
 
-static const char nslookup_usage[] = "nslookup [HOST]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nQueries the nameserver for the IP address of the given HOST\n"
-#endif
-;
-
-
 /* I have to see how the real nslookup does this.
  * I could dig through /etc/resolv.conf, but is there a
  * better (programatic) way?
@@ -177,4 +170,4 @@ int nslookup_main(int argc, char **argv)
        return( TRUE);
 }
 
-/* $Id: nslookup.c,v 1.10 2000/06/19 17:25:40 andersen Exp $ */
+/* $Id: nslookup.c,v 1.11 2000/07/16 20:57:15 kraai Exp $ */
index b2b4880edd47be11a7b5a16d971ff04fdc46d06f..5f44a6816f9085a8f90c485dea4eb5de7c5abd2c 100644 (file)
@@ -1,6 +1,6 @@
 /* vi: set sw=4 ts=4: */
 /*
- * $Id: ping.c,v 1.22 2000/07/14 06:49:52 andersen Exp $
+ * $Id: ping.c,v 1.23 2000/07/16 20:57:15 kraai Exp $
  * Mini ping implementation for busybox
  *
  * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
@@ -174,12 +174,6 @@ static int in_cksum(unsigned short *buf, int sz)
 
 /* simple version */
 #ifdef BB_FEATURE_SIMPLE_PING
-static const char *ping_usage = "ping host\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSend ICMP ECHO_REQUEST packets to network hosts\n"
-#endif
-       ;
-
 static char *hostname = NULL;
 
 static void noresp(int ign)
@@ -267,17 +261,6 @@ extern int ping_main(int argc, char **argv)
 
 #else /* ! BB_FEATURE_SIMPLE_PING */
 /* full(er) version */
-static const char *ping_usage = "ping [OPTION]... host\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSend ICMP ECHO_REQUEST packets to network hosts.\n\n"
-       "Options:\n"
-       "\t-c COUNT\tSend only COUNT pings.\n"
-       "\t-s SIZE\t\tSend SIZE data bytes in packets (default=56).\n"
-       "\t-q\t\tQuiet mode, only displays output at start\n"
-       "\t\t\tand when finished.\n"
-#endif
-       ;
-
 static char *hostname = NULL;
 static struct sockaddr_in pingaddr;
 static int pingsock = -1;
index f276035270ba18542daff007c60a2334048f914e..3e43c4a1b90e435d6882192ab12d1a7240a2334c 100644 (file)
@@ -134,14 +134,6 @@ static int local_bind(int port);
 
 /* Some globals */
 static int one = 1;
-static const char telnet_usage[] =
-       "telnet host [port]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nTelnet is used to establish interactive communication with another\n"
-       "computer over a network using the TELNET protocol.\n"
-#endif
-       ;
-
 
 static void doexit(int ev)
 {
index 54f37c8481d690b12f456b429fd1bd789a45601d..10d36b2d10bf867d116e6563c93524e9cc3519b0 100644 (file)
  |  + find out how the real nslookup gets the default name server
  */
 
-static const char nslookup_usage[] = "nslookup [HOST]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nQueries the nameserver for the IP address of the given HOST\n"
-#endif
-;
-
-
 /* I have to see how the real nslookup does this.
  * I could dig through /etc/resolv.conf, but is there a
  * better (programatic) way?
@@ -177,4 +170,4 @@ int nslookup_main(int argc, char **argv)
        return( TRUE);
 }
 
-/* $Id: nslookup.c,v 1.10 2000/06/19 17:25:40 andersen Exp $ */
+/* $Id: nslookup.c,v 1.11 2000/07/16 20:57:15 kraai Exp $ */
diff --git a/ping.c b/ping.c
index b2b4880edd47be11a7b5a16d971ff04fdc46d06f..5f44a6816f9085a8f90c485dea4eb5de7c5abd2c 100644 (file)
--- a/ping.c
+++ b/ping.c
@@ -1,6 +1,6 @@
 /* vi: set sw=4 ts=4: */
 /*
- * $Id: ping.c,v 1.22 2000/07/14 06:49:52 andersen Exp $
+ * $Id: ping.c,v 1.23 2000/07/16 20:57:15 kraai Exp $
  * Mini ping implementation for busybox
  *
  * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
@@ -174,12 +174,6 @@ static int in_cksum(unsigned short *buf, int sz)
 
 /* simple version */
 #ifdef BB_FEATURE_SIMPLE_PING
-static const char *ping_usage = "ping host\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSend ICMP ECHO_REQUEST packets to network hosts\n"
-#endif
-       ;
-
 static char *hostname = NULL;
 
 static void noresp(int ign)
@@ -267,17 +261,6 @@ extern int ping_main(int argc, char **argv)
 
 #else /* ! BB_FEATURE_SIMPLE_PING */
 /* full(er) version */
-static const char *ping_usage = "ping [OPTION]... host\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSend ICMP ECHO_REQUEST packets to network hosts.\n\n"
-       "Options:\n"
-       "\t-c COUNT\tSend only COUNT pings.\n"
-       "\t-s SIZE\t\tSend SIZE data bytes in packets (default=56).\n"
-       "\t-q\t\tQuiet mode, only displays output at start\n"
-       "\t\t\tand when finished.\n"
-#endif
-       ;
-
 static char *hostname = NULL;
 static struct sockaddr_in pingaddr;
 static int pingsock = -1;
index f572897595b5a65cb1fe7d9986795fce5904fa83..6a87fc319902afbddfaf16118c6a6235e77bb076 100644 (file)
--- a/printf.c
+++ b/printf.c
@@ -137,13 +137,6 @@ static void verify __P((char *s, char *end));
 /* The value to return to the calling program.  */
 static int exit_status;
 
-static const char printf_usage[] = "printf FORMAT [ARGUMENT...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nFormats and prints ARGUMENT(s) according to FORMAT,\n"
-       "Where FORMAT controls the output exactly as in C printf.\n"
-#endif
-       ;
-
 int printf_main(int argc, char **argv)
 {
        char *format;
index 7c9d7f10ac1b83604086a5b04888004635ceda80..78298cfb6422a55e04df5d5654cb657d0744555d 100644 (file)
 #include <stdio.h>
 #include <errno.h>
 
-const char free_usage[] =
-       "free\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nDisplays the amount of free and used system memory\n"
-#endif
-       ;
-
 extern int free_main(int argc, char **argv)
 {
        struct sysinfo info;
index 44cb38395fb4012dcd2a16fd9ef68b782f63bd00..da46620dd462ddb8fba6db92a391b7473e6f1fd4 100644 (file)
 #include <sys/stat.h>
 #include <unistd.h>
 
-static const char *kill_usage =
-       "kill [-signal] process-id [process-id ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSend a signal (default is SIGTERM) to the specified process(es).\n\n"
-       "Options:\n" "\t-l\tList all signal names and numbers.\n\n"
-#endif
-       ;
-
-#ifdef BB_KILLALL
-static const char *killall_usage =
-       "killall [-signal] process-name [process-name ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSend a signal (default is SIGTERM) to the specified process(es).\n\n"
-       "Options:\n" "\t-l\tList all signal names and numbers.\n\n"
-#endif
-#endif
-       ;
-
 #define KILL   0
 #define KILLALL        1
 
index 74e79f5f8642d082d755f213ab271fb2078b30a1..fc58a9bb7215506f8cbaf026525a0f3143ea0eca 100644 (file)
@@ -114,14 +114,6 @@ static void parse_proc_status(char *S, proc_t * P)
 
 }
 
-const char ps_usage[] =
-       "ps\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nReport process status\n"
-       "\nThis version of ps accepts no options.\n"
-#endif
-       ;
-
 extern int ps_main(int argc, char **argv)
 {
        proc_t p;
diff --git a/ps.c b/ps.c
index 74e79f5f8642d082d755f213ab271fb2078b30a1..fc58a9bb7215506f8cbaf026525a0f3143ea0eca 100644 (file)
--- a/ps.c
+++ b/ps.c
@@ -114,14 +114,6 @@ static void parse_proc_status(char *S, proc_t * P)
 
 }
 
-const char ps_usage[] =
-       "ps\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nReport process status\n"
-       "\nThis version of ps accepts no options.\n"
-#endif
-       ;
-
 extern int ps_main(int argc, char **argv)
 {
        proc_t p;
diff --git a/rm.c b/rm.c
index 2067d878c269f266dc9d05a8d06f6cc23de10b5c..275c059463487ff73175faabff4a9a46cc594706 100644 (file)
--- a/rm.c
+++ b/rm.c
 #include <dirent.h>
 #include <errno.h>
 
-static const char *rm_usage = "rm [OPTION]... FILE...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nRemove (unlink) the FILE(s).  You may use '--' to\n"
-       "indicate that all following arguments are non-options.\n\n"
-       "Options:\n"
-       "\t-f\t\tremove existing destinations, never prompt\n"
-       "\t-r or -R\tremove the contents of directories recursively\n"
-#endif
-       ;
-
-
 static int recursiveFlag = FALSE;
 static int forceFlag = FALSE;
 static const char *srcName;
diff --git a/rmdir.c b/rmdir.c
index 3c3533fae6cde96fd98030d67b3142556d30a39b..500890e4013b23f9348cd8d77c2329ac46238dbf 100644 (file)
--- a/rmdir.c
+++ b/rmdir.c
 #include <stdio.h>
 #include <errno.h>
 
-const char rmdir_usage[] =
-       "rmdir [OPTION]... DIRECTORY...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nRemove the DIRECTORY(ies), if they are empty.\n"
-#endif
-       ;
-
 extern int rmdir_main(int argc, char **argv)
 {
        if (argc == 1 || **(argv + 1) == '-')
diff --git a/rmmod.c b/rmmod.c
index 3158686f058c112b41985652ba54bf6f7386d0f4..da10b7fcf954fbc7cd429ae160fa9e98c084bac9 100644 (file)
--- a/rmmod.c
+++ b/rmmod.c
 /* And the system call of the day is...  */
 _syscall1(int, delete_module, const char *, name)
 
-
-static const char rmmod_usage[] =
-       "rmmod [OPTION]... [MODULE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nUnloads the specified kernel modules from the kernel.\n\n"
-       "Options:\n" 
-       "\t-a\tTry to remove all unused kernel modules.\n"
-#endif
-       ;
-
-
-
 extern int rmmod_main(int argc, char **argv)
 {
        if (argc <= 1) {
diff --git a/sed.c b/sed.c
index 1f1e9069cc92fa6da36b5eab1d6a2288a92d1d4e..4d4886e19ef73b1110fe7e19fc946c30448562f8 100644 (file)
--- a/sed.c
+++ b/sed.c
@@ -85,22 +85,6 @@ static int ncmds = 0; /* number of sed commands */
 
 /*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */
 
-static const char sed_usage[] =
-       "sed [-Vhnef] pattern [files...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\n"
-       "-n\tsuppress automatic printing of pattern space\n"
-       "-e script\tadd the script to the commands to be executed\n"
-       "-f scriptfile\tadd the contents of script-file to the commands to be executed\n"
-       "-h\tdisplay this help message\n"
-       "-V\toutput version information and exit\n"
-       "\n"
-       "If no -e or -f is given, the first non-option argument is taken as the\n"
-       "sed script to interpret. All remaining arguments are names of input\n"
-       "files; if no input files are specified, then the standard input is read.\n"
-#endif
-       ;
-
 #if 0
 static void destroy_cmd_strs()
 {
index 1bdb909ea7de5af68204fd1c920237f65d950280..284ffa194b70518672167e51bb34b6dada80ac6c 100644 (file)
@@ -35,17 +35,6 @@ struct kbkeycode {
 };
 #define KDSETKEYCODE    0x4B4D  /* write kernel keycode table entry */
 
-
-static const char setkeycodes_usage[] =
-       "setkeycodes SCANCODE KEYCODE ...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSet entries into the kernel's scancode-to-keycode map,\n"
-       "allowing unusual keyboards to generate usable keycodes.\n\n" 
-       "SCANCODE may be either xx or e0xx (hexadecimal),\n"
-       "and KEYCODE is given in decimal\n"
-#endif
-       ;
-
 extern int 
 setkeycodes_main(int argc, char** argv)
 {
diff --git a/sh.c b/sh.c
index d829b6b29e932eb5e8d319dd7dbcf794338aa393..9b3435304926289db4301c2ccd7c781a7e63361c 100644 (file)
--- a/sh.c
+++ b/sh.c
@@ -137,14 +137,6 @@ static struct builtInCommand bltins_forking[] = {
        {NULL, NULL, NULL, NULL}
 };
 
-static const char shell_usage[] =
-       "sh [FILE]...\n"
-       "   or: sh -c command [args]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nlash: The BusyBox command interpreter (shell).\n\n"
-#endif
-       ;
-
 static char *prompt = "# ";
 static char *cwd = NULL;
 static char *local_pending_command = NULL;
index d829b6b29e932eb5e8d319dd7dbcf794338aa393..9b3435304926289db4301c2ccd7c781a7e63361c 100644 (file)
@@ -137,14 +137,6 @@ static struct builtInCommand bltins_forking[] = {
        {NULL, NULL, NULL, NULL}
 };
 
-static const char shell_usage[] =
-       "sh [FILE]...\n"
-       "   or: sh -c command [args]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nlash: The BusyBox command interpreter (shell).\n\n"
-#endif
-       ;
-
 static char *prompt = "# ";
 static char *cwd = NULL;
 static char *local_pending_command = NULL;
diff --git a/sleep.c b/sleep.c
index c7ab32d4bc96467f77049b9bddd9e51242d12efc..d6705c4c3cc5c6a280c830531aad66e79fb23b98 100644 (file)
--- a/sleep.c
+++ b/sleep.c
 #include "internal.h"
 #include <stdio.h>
 
-const char sleep_usage[] = "sleep N\n" 
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPause for N seconds.\n"
-#endif
-       ;
-
 extern int sleep_main(int argc, char **argv)
 {
        if ((argc < 2) || (**(argv + 1) == '-')) {
diff --git a/sort.c b/sort.c
index c754989eafdb2f154611ceace21a56621ff097a1..6af5c4df302af127b07c402c494fdd0d1e4134e0 100644 (file)
--- a/sort.c
+++ b/sort.c
 #include <stdio.h>
 #include <errno.h>
 
-static const char sort_usage[] = "sort [-n]"
-#ifdef BB_FEATURE_SORT_REVERSE
-" [-r]"
-#endif
-" [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-"\nSorts lines of text in the specified files\n"
-#endif
-;
-
 #ifdef BB_FEATURE_SORT_REVERSE
 #define APPLY_REVERSE(x) (reverse ? -(x) : (x))
 static int reverse = 0;
@@ -304,4 +294,4 @@ int sort_main(int argc, char **argv)
        return(0);
 }
 
-/* $Id: sort.c,v 1.19 2000/07/14 01:51:25 kraai Exp $ */
+/* $Id: sort.c,v 1.20 2000/07/16 20:57:15 kraai Exp $ */
index a79b93a2313251036294ca20ccfd56594fea8ce5..6aafe51a26dde27793cd884ab75d6e43ec7ab2dd 100644 (file)
@@ -35,25 +35,6 @@ _syscall1(int, swapoff, const char *, path);
 
 static int whichApp;
 
-static const char swapoff_usage[] =
-       "swapoff [OPTION] [device]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nStop swapping virtual memory pages on the given device.\n\n"
-       "Options:\n"
-       "\t-a\tStop swapping on all swap devices\n"
-#endif
-       ;
-
-static const char swapon_usage[] =
-       "swapon [OPTION] [device]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nStart swapping virtual memory pages on the given device.\n\n"
-       "Options:\n"
-       "\t-a\tStart swapping on all swap devices\n"
-#endif
-       ;
-
-
 #define SWAPON_APP   1
 #define SWAPOFF_APP  2
 
diff --git a/sync.c b/sync.c
index f7c14b04cac85c7addbb054300e007c69ebd25dc..3737cb1f1822f86aebfb0421116bc048e3ed7fd2 100644 (file)
--- a/sync.c
+++ b/sync.c
 #include "internal.h"
 #include <stdio.h>
 
-const char sync_usage[] =
-       "sync\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nWrite all buffered filesystem blocks to disk.\n"
-#endif
-       ;
-
 extern int sync_main(int argc, char **argv)
 {
        if (argc > 1 && **(argv + 1) == '-')
index 981748bb50559ad122b1a7cf0b7ed996375bd704..0e1ce8dce7e439539d2d1e966d6033f3bdcae042 100644 (file)
@@ -47,20 +47,6 @@ extern CODE prioritynames[];
 extern CODE facilitynames[];
 #endif
 
-static const char logger_usage[] =
-       "logger [OPTION]... [MESSAGE]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nWrite MESSAGE to the system log.  If MESSAGE is '-', log stdin.\n\n"
-       "Options:\n"
-       "\t-s\tLog to stderr as well as the system log.\n"
-       "\t-t\tLog using the specified tag (defaults to user name).\n"
-
-       "\t-p\tEnter the message with the specified priority.\n"
-       "\t\tThis may be numerical or a ``facility.level'' pair.\n"
-#endif
-       ;
-
-
 /* Decode a symbolic name to a numeric value 
  * this function is based on code
  * Copyright (c) 1983, 1993
index 55fd8dc740c90b3a255a295a2f5526cf0521646e..264d899f3377ad1b0b8d597b118ac09dcd840c32 100644 (file)
@@ -76,21 +76,6 @@ static int MarkInterval = 20 * 60;
 /* localhost's name */
 static char LocalHostName[32];
 
-static const char syslogd_usage[] =
-       "syslogd [OPTION]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nLinux system and kernel (provides klogd) logging utility.\n"
-       "Note that this version of syslogd/klogd ignores /etc/syslog.conf.\n\n"
-       "Options:\n"
-       "\t-m NUM\t\tInterval between MARK lines (default=20min, 0=off)\n"
-       "\t-n\t\tRun as a foreground process\n"
-#ifdef BB_FEATURE_KLOGD
-       "\t-K\t\tDo not start up the klogd process\n"
-#endif
-       "\t-O FILE\t\tUse an alternate log file (default=/var/log/messages)\n"
-#endif
-       ;
-
 /* Note: There is also a function called "message()" in init.c */
 /* Print a message to the log file. */
 static void message (char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
index 55fd8dc740c90b3a255a295a2f5526cf0521646e..264d899f3377ad1b0b8d597b118ac09dcd840c32 100644 (file)
--- a/syslogd.c
+++ b/syslogd.c
@@ -76,21 +76,6 @@ static int MarkInterval = 20 * 60;
 /* localhost's name */
 static char LocalHostName[32];
 
-static const char syslogd_usage[] =
-       "syslogd [OPTION]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nLinux system and kernel (provides klogd) logging utility.\n"
-       "Note that this version of syslogd/klogd ignores /etc/syslog.conf.\n\n"
-       "Options:\n"
-       "\t-m NUM\t\tInterval between MARK lines (default=20min, 0=off)\n"
-       "\t-n\t\tRun as a foreground process\n"
-#ifdef BB_FEATURE_KLOGD
-       "\t-K\t\tDo not start up the klogd process\n"
-#endif
-       "\t-O FILE\t\tUse an alternate log file (default=/var/log/messages)\n"
-#endif
-       ;
-
 /* Note: There is also a function called "message()" in init.c */
 /* Print a message to the log file. */
 static void message (char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
diff --git a/tail.c b/tail.c
index 9232356ebcdecc70c486575187e339b1b0417686..cea63e8400b924c63fa92a6ce7ab04fcd54a3906 100644 (file)
--- a/tail.c
+++ b/tail.c
@@ -72,21 +72,6 @@ static int forever;
 /* If nonzero, print filename headers.  */
 static int print_headers;
 
-const char tail_usage[] =
-       "tail [OPTION] [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint last 10 lines of each FILE to standard output.\n"
-       "With more than one FILE, precede each with a header giving the\n"
-       "file name. With no FILE, or when FILE is -, read standard input.\n\n"
-       "Options:\n"
-       "\t-n NUM\t\tPrint last NUM lines instead of first 10\n"
-
-       "\t-f\t\tOutput data as the file grows.  This version\n"
-       "\t\t\tof 'tail -f' supports only one file at a time.\n"
-#endif
-       ;
-
-
 static void write_header(const char *filename)
 {
        static int first_file = 1;
@@ -516,25 +501,6 @@ char *program_name;
 /* Nonzero if we have ever read standard input.  */
 static int have_read_stdin;
 
-
-static const char tail_usage[] = "tail [OPTION]... [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-"\nPrint last 10 lines of each FILE to standard output.\n\
-With more than one FILE, precede each with a header giving the file name.\n\
-With no FILE, or when FILE is -, read standard input.\n\
-\n\
-  -c=N[kbm]       output the last N bytes\n\
-  -f              output appended data as the file grows\n\
-  -n=N            output the last N lines, instead of last 10\n\
-  -q              never output headers giving file names\n\
-  -v              always output headers giving file names\n\
-\n\
-If the first character of N (bytes or lines) is a `+', output begins with \n\
-the Nth item from the start of each file, otherwise, print the last N items\n\
-in the file.  N bytes may be suffixed by k (x1024), b (x512), or m (1024^2).\n"
-#endif
-;
-
 static void write_header(const char *filename, const char *comment)
 {
        static int first_file = 1;
diff --git a/tar.c b/tar.c
index 353694f3327f6af7ca2e7f8132b00ebda27737be..6f18dc43f3cef240e3c0596f8802899b9962cbff 100644 (file)
--- a/tar.c
+++ b/tar.c
 #include <sys/types.h>
 #include <sys/sysmacros.h>
 
-
-static const char tar_usage[] =
-#ifdef BB_FEATURE_TAR_CREATE
-       "tar -[cxtvO] "
-#else
-       "tar -[xtvO] "
-#endif
-#if defined BB_FEATURE_TAR_EXCLUDE
-       "[--exclude File] "
-#endif
-       "[-f tarFile] [FILE] ...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCreate, extract, or list files from a tar file.  Note that\n"
-       "this version of tar treats hard links as separate files.\n\n"
-       "Main operation mode:\n"
-#ifdef BB_FEATURE_TAR_CREATE
-       "\tc\t\tcreate\n"
-#endif
-       "\tx\t\textract\n"
-       "\tt\t\tlist\n"
-       "\nFile selection:\n"
-       "\tf\t\tname of tarfile or \"-\" for stdin\n"
-       "\tO\t\textract to stdout\n"
-#if defined BB_FEATURE_TAR_EXCLUDE
-       "\t--exclude\tfile to exclude\n"
-#endif
-       "\nInformative output:\n"
-       "\tv\t\tverbosely list files processed\n"
-#endif
-       ;
-
 /* Tar file constants  */
 #ifndef MAJOR
 #define MAJOR(dev) (((dev)>>8)&0xff)
diff --git a/tee.c b/tee.c
index 67b42a24d55e10276c2f552c0a5e816324b33ac9..c15408b51a39fad758198216feed05914f5d36c7 100644 (file)
--- a/tee.c
+++ b/tee.c
 #include <errno.h>
 #include <stdio.h>
 
-static const char tee_usage[] =
-       "tee [OPTION]... [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCopy standard input to each FILE, and also to standard output.\n\n"
-       "Options:\n" "\t-a\tappend to the given FILEs, do not overwrite\n"
-#if 0
-       "\t-i\tignore interrupt signals\n"
-#endif
-#endif
-;
-
-
 /* FileList _______________________________________________________________ */
 
 #define FL_MAX 1024
@@ -133,4 +121,4 @@ int tee_main(int argc, char **argv)
        return(0);
 }
 
-/* $Id: tee.c,v 1.12 2000/07/14 01:51:25 kraai Exp $ */
+/* $Id: tee.c,v 1.13 2000/07/16 20:57:15 kraai Exp $ */
index f276035270ba18542daff007c60a2334048f914e..3e43c4a1b90e435d6882192ab12d1a7240a2334c 100644 (file)
--- a/telnet.c
+++ b/telnet.c
@@ -134,14 +134,6 @@ static int local_bind(int port);
 
 /* Some globals */
 static int one = 1;
-static const char telnet_usage[] =
-       "telnet host [port]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nTelnet is used to establish interactive communication with another\n"
-       "computer over a network using the TELNET protocol.\n"
-#endif
-       ;
-
 
 static void doexit(int ev)
 {
diff --git a/test.c b/test.c
index bf1622cde717b3b1ae98523be983892ccf83cd65..9a1888b280883fe38d1dbb7b4c8fa49c95214776 100644 (file)
--- a/test.c
+++ b/test.c
@@ -178,15 +178,6 @@ static int test_eaccess();
 static int is_a_group_member();
 static void initialize_group_array();
 
-const char test_usage[] =
-       "test EXPRESSION\n"
-       "or   [ EXPRESSION ]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nChecks file types and compares values returning an exit\n"
-       "code determined by the value of EXPRESSION.\n"
-#endif
-       ;
-
 extern int
 test_main(int argc, char** argv)
 {
diff --git a/touch.c b/touch.c
index ac275423c1288c6f62eb14ac047a0cbdad250573..afdd265f742e82ca66a526114b2c9c7743a08e4b 100644 (file)
--- a/touch.c
+++ b/touch.c
 #include <utime.h>
 #include <errno.h>
 
-
-static const char touch_usage[] = "touch [-c] file [file ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nUpdate the last-modified date on the given file[s].\n\n"
-       "Options:\n"
-       "\t-c\tDo not create any files\n"
-#endif
-       ;
-
-
 extern int touch_main(int argc, char **argv)
 {
        int fd;
diff --git a/tr.c b/tr.c
index 2971ef68e411c04b22f3087b3c493db02c927e44..004092477e9e1667bf1fd58ba94572445936fd75 100644 (file)
--- a/tr.c
+++ b/tr.c
 #define bb_need_write_error
 #include "messages.c"
 
-const char *tr_usage="tr [-cds] STRING1 [STRING2]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nTranslate, squeeze, and/or delete characters from\n"
-       "standard input, writing to standard output.\n\n"
-       "Options:\n"
-       "\t-c\ttake complement of STRING1\n"
-       "\t-d\tdelete input characters coded STRING1\n"
-       "\t-s\tsqueeze multiple output characters of STRING2 into one character\n"
-#endif
-;
-
-
-
 #ifdef TRUE
 #undef TRUE
 #undef FALSE
diff --git a/tty.c b/tty.c
index f3c7fb74f5ceefb3297a839c6b170ebfd1a6da3f..bbc051f6b6ffe8395b157a756206d8191e709ac2 100644 (file)
--- a/tty.c
+++ b/tty.c
 #include <stdio.h>
 #include <sys/types.h>
 
-static const char tty_usage[] = "tty\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint the file name of the terminal connected to standard input.\n\n"
-       "Options:\n"
-       "\t-s\tprint nothing, only return an exit status\n"
-#endif
-       ;
-
 extern int tty_main(int argc, char **argv)
 {
        char *tty;
index 1b250fd3a3ddbc7bd2267e1a8ea8d48afea57d11..df075f7d9f14e413fdbc999cbe508285b6d3b90a 100644 (file)
--- a/umount.c
+++ b/umount.c
@@ -39,28 +39,6 @@ extern int mount (__const char *__special_file, __const char *__dir,
 extern int umount (__const char *__special_file);
 extern int umount2 (__const char *__special_file, int __flags);
 
-
-
-static const char umount_usage[] =
-       "umount [flags] filesystem|directory\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "Unmount file systems\n"
-       "\nFlags:\n" "\t-a:\tUnmount all file systems"
-#ifdef BB_MTAB
-       " in /etc/mtab\n\t-n:\tDon't erase /etc/mtab entries\n"
-#else
-       "\n"
-#endif
-       "\t-r:\tTry to remount devices as read-only if mount is busy\n"
-#if defined BB_FEATURE_MOUNT_FORCE
-       "\t-f:\tForce filesystem umount (i.e. unreachable NFS server)\n"
-#endif
-#if defined BB_FEATURE_MOUNT_LOOP
-       "\t-l:\tDo not free loop device (if a loop device has been used)\n"
-#endif
-#endif
-;
-
 struct _mtab_entry_t {
        char *device;
        char *mountpt;
diff --git a/uname.c b/uname.c
index b7c88ece5f458b51375511e2299f4a105e06df8a..55616dd19bd0ffaaa4d578a8a3238f2adc9120ef 100644 (file)
--- a/uname.c
+++ b/uname.c
 # include <sys/systeminfo.h>
 #endif
 
-
-static const char uname_usage[] =
-       "uname [OPTION]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint certain system information.  With no OPTION, same as -s.\n\n"
-       "Options:\n"
-       "\t-a\tprint all information\n"
-       "\t-m\tthe machine (hardware) type\n"
-       "\t-n\tprint the machine's network node hostname\n"
-       "\t-r\tprint the operating system release\n"
-       "\t-s\tprint the operating system name\n"
-
-       "\t-p\tprint the host processor type\n"
-       "\t-v\tprint the operating system version\n"
-#endif
-       ;
-
-
 static void print_element(unsigned int mask, char *element);
 
 /* Values that are bitwise or'd into `toprint'. */
diff --git a/uniq.c b/uniq.c
index 16b25767049071714eda66327bf872000f66585e..016fc77806cadb534616c9e79b65233fec608438 100644 (file)
--- a/uniq.c
+++ b/uniq.c
 #include <string.h>
 #include <errno.h>
 
-static const char uniq_usage[] =
-       "uniq [OPTION]... [INPUT [OUTPUT]]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nDiscard all but one of successive identical lines from INPUT\n"
-       "(or standard input), writing to OUTPUT (or standard output).\n"
-#endif
-       ;
-
 /* max chars in line */
 #define UNIQ_MAX 4096
 
@@ -187,4 +179,4 @@ int uniq_main(int argc, char **argv)
        return(0);
 }
 
-/* $Id: uniq.c,v 1.12 2000/07/14 01:51:25 kraai Exp $ */
+/* $Id: uniq.c,v 1.13 2000/07/16 20:57:15 kraai Exp $ */
index f94346172e4e37f39afaa03de8f2a3af3a9c86d7..0bdc90eaa83154767cb46d4e3c57ad6269cb62db 100644 (file)
--- a/update.c
+++ b/update.c
 static _syscall2(int, bdflush, int, func, int, data);
 #endif                                                 /* __GLIBC__ */
 
-
-static char update_usage[] =
-       "update [options]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPeriodically flushes filesystem buffers.\n\n"
-       "Options:\n"
-       "\t-S\tforce use of sync(2) instead of flushing\n"
-       "\t-s SECS\tcall sync this often (default 30)\n"
-       "\t-f SECS\tflush some buffers this often (default 5)\n"
-#endif
-       ;
-
 static unsigned int sync_duration = 30;
 static unsigned int flush_duration = 5;
 static int use_sync = 0;
diff --git a/usage.c b/usage.c
new file mode 100644 (file)
index 0000000..d5a34ec
--- /dev/null
+++ b/usage.c
@@ -0,0 +1,1204 @@
+#include "internal.h"
+
+#if defined BB_AR
+const char ar_usage[] =
+       "ar [optxvV] archive [filenames] \n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nExtract or list files from an ar archive.\n\n"
+       "Options:\n"
+       "\to\t\tpreserve original dates\n"
+       "\tp\t\textract to stdout\n"
+       "\tt\t\tlist\n"
+       "\tx\t\textract\n"
+       "\tv\t\tverbosely list files processed\n"
+#endif
+       ;
+#endif
+
+#if defined BB_BASENAME
+const char basename_usage[] =
+       "basename FILE [SUFFIX]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nStrips directory path and suffixes from FILE.\n"
+       "If specified, also removes any trailing SUFFIX.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CAT
+const char cat_usage[] =
+       "cat [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nConcatenates FILE(s) and prints them to stdout.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CHMOD_CHOWN_CHGRP
+const char chgrp_usage[] =
+       "chgrp [OPTION]... GROUP FILE...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nChange the group membership of each FILE to GROUP.\n"
+       "\nOptions:\n\t-R\tChanges files and directories recursively.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CHMOD_CHOWN_CHGRP
+const char chmod_usage[] =
+       "chmod [-R] MODE[,MODE]... FILE...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nEach MODE is one or more of the letters ugoa, one of the symbols +-= and\n"
+       "one or more of the letters rwxst.\n\n"
+       "\nOptions:\n\t-R\tChanges files and directories recursively.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CHMOD_CHOWN_CHGRP
+const char chown_usage[] =
+       "chown [OPTION]...  OWNER[<.|:>[GROUP] FILE...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nChange the owner and/or group of each FILE to OWNER and/or GROUP.\n"
+       "\nOptions:\n\t-R\tChanges files and directories recursively.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CHROOT
+const char chroot_usage[] =
+       "chroot NEWROOT [COMMAND...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nRun COMMAND with root directory set to NEWROOT.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CHVT
+const char chvt_usage[] =
+       "chvt N\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nChanges the foreground virtual terminal to /dev/ttyN\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CP_MV
+const char cp_usage[] =
+       "cp [OPTION]... SOURCE DEST\n"
+       "   or: cp [OPTION]... SOURCE... DIRECTORY\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCopies SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n"
+       "\n"
+       "\t-a\tSame as -dpR\n"
+       "\t-d\tPreserves links\n"
+       "\t-p\tPreserves file attributes if possible\n"
+       "\t-f\tforce (implied; ignored) - always set\n"
+       "\t-R\tCopies directories recursively\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CUT
+const char cut_usage[] =
+       "cut [OPTION]... [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrints selected fields from each input FILE to standard output.\n\n"
+       "Options:\n"
+       "\t-b LIST\tOutput only bytes from LIST\n"
+       "\t-c LIST\tOutput only characters from LIST\n"
+       "\t-d CHAR\tUse CHAR instead of tab as the field delimiter\n"
+       "\t-s\tOnly output Lines if the include DELIM\n"
+       "\t-f N\tPrint only these fields\n"
+       "\t-n\tIgnored\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DATE
+const char date_usage[] =
+       "date [OPTION]... [+FORMAT]\n"
+       "  or:  date [OPTION] [MMDDhhmm[[CC]YY][.ss]]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nDisplays the current time in the given FORMAT, or sets the system date.\n"
+       "\nOptions:\n\t-R\tOutputs RFC-822 compliant date string\n"
+       "\t-s\tSets time described by STRING\n"
+       "\t-u\tPrints or sets Coordinated Universal Time\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DC
+const char dc_usage[] =
+       "dc expression ...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nThis is a Tiny RPN calculator that understands the\n"
+       "following operations: +, -, /, *, and, or, not, eor.\n"
+       "i.e. 'dc 2 2 add' -> 4, and 'dc 8 8 \\* 2 2 + /' -> 16\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DD
+const char dd_usage[] =
+       "dd [if=FILE] [of=FILE] [bs=N] [count=N] [skip=N] [seek=N]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCopy a file, converting and formatting according to options\n\n"
+       "\tif=FILE\tread from FILE instead of stdin\n"
+       "\tof=FILE\twrite to FILE instead of stdout\n"
+       "\tbs=N\tread and write N bytes at a time\n"
+       "\tcount=N\tcopy only N input blocks\n"
+       "\tskip=N\tskip N input blocks\n"
+       "\tseek=N\tskip N output blocks\n"
+       "\n"
+       "Numbers may be suffixed by w (x2), k (x1024), b (x512), or M (x1024^2)\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DEALLOCVT
+const char deallocvt_usage[] =
+       "deallocvt N\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+        "\nDeallocate unused virtual terminal /dev/ttyN\n"
+#endif
+        ;
+#endif
+
+#if defined BB_DF
+const char df_usage[] =
+       "df [filesystem ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint the filesystem space used and space available.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DIRNAME
+const char dirname_usage[] =
+       "dirname [FILENAME ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nStrips non-directory suffix from FILENAME\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DMESG
+const char dmesg_usage[] =
+       "dmesg [-c] [-n LEVEL] [-s SIZE]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrints or controls the kernel ring buffer\n\n"
+       "Options:\n"
+       "\t-c\t\tClears the ring buffer's contents after printing\n"
+       "\t-n LEVEL\tSets console logging level\n"
+       "\t-s SIZE\t\tUse a buffer of size SIZE\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DU
+const char du_usage[] =
+       "du [OPTION]... [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSummarizes disk space used for each FILE and/or directory.\n"
+       "Disk space is printed in units of 1024 bytes.\n\n"
+       "Options:\n"
+       "\t-l\tcount sizes many times if hard linked\n"
+       "\t-s\tdisplay only a total for each argument\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DUMPKMAP
+const char dumpkmap_usage[] =
+       "dumpkmap\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrints out a binary keyboard translation table to standard input.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_DUTMP
+const char dutmp_usage[] =
+       "dutmp [FILE]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nDump utmp file format (pipe delimited) from FILE\n"
+       "or stdin to stdout.  (i.e. 'dutmp /var/run/utmp')\n"
+#endif
+       ;
+#endif
+
+#if defined BB_ECHO
+const char echo_usage[] =
+       "echo [-neE] [ARG ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrints the specified ARGs to stdout\n\n"
+       "Options:\n"
+       "\t-n\tsuppress trailing newline\n"
+       "\t-e\tinterpret backslash-escaped characters (i.e. \\t=tab etc)\n"
+       "\t-E\tdisable interpretation of backslash-escaped characters\n"
+#endif
+       ;
+#endif
+
+#if defined BB_FDFLUSH
+const char fdflush_usage[] =
+       "fdflush DEVICE\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nForces floppy disk drive to detect disk change\n"
+#endif
+       ;
+#endif
+
+#if defined BB_FIND
+const char find_usage[] =
+       "find [PATH...] [EXPRESSION]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSearch for files in a directory hierarchy.  The default PATH is\n"
+       "the current directory; default EXPRESSION is '-print'\n\n"
+       "\nEXPRESSION may consist of:\n"
+       "\t-follow\t\tDereference symbolic links.\n"
+       "\t-name PATTERN\tFile name (leading directories removed) matches PATTERN.\n"
+       "\t-print\t\tprint the full file name followed by a newline to stdout.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_FREE
+const char free_usage[] =
+       "free\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nDisplays the amount of free and used system memory\n"
+#endif
+       ;
+#endif
+
+#if defined BB_FREERAMDISK
+const char freeramdisk_usage[] =
+       "freeramdisk DEVICE\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nFrees all memory used by the specified ramdisk.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_FSCK_MINIX
+const char fsck_minix_usage[] =
+       "Usage: fsck.minix [-larvsmf] /dev/name\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPerforms a consistency check for MINIX filesystems.\n\n"
+       "Options:\n"
+       "\t-l\tLists all filenames\n"
+       "\t-r\tPerform interactive repairs\n"
+       "\t-a\tPerform automatic repairs\n"
+       "\t-v\tverbose\n"
+       "\t-s\tOutputs super-block information\n"
+       "\t-m\tActivates MINIX-like \"mode not cleared\" warnings\n"
+       "\t-f\tForce file system check.\n\n"
+#endif
+       ;
+#endif
+
+#if defined BB_GREP
+const char grep_usage[] =
+       "grep [-ihHnqvs] pattern [files...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSearch for PATTERN in each FILE or standard input.\n\n"
+       "Options:\n"
+       "\t-H\tprefix output lines with filename where match was found\n"
+       "\t-h\tsuppress the prefixing filename on output\n"
+       "\t-i\tignore case distinctions\n"
+       "\t-n\tprint line number with output lines\n"
+       "\t-q\tbe quiet. Returns 0 if result was found, 1 otherwise\n"
+       "\t-v\tselect non-matching lines\n"
+       "\t-s\tsuppress file open/read error messages\n\n"
+#endif
+       ;
+#endif
+
+#if defined BB_GUNZIP
+const char gunzip_usage[] =
+       "gunzip [OPTION]... FILE\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nUncompress FILE (or standard input if FILE is '-').\n\n"
+       "Options:\n"
+       "\t-c\tWrite output to standard output\n"
+       "\t-t\tTest compressed file integrity\n"
+#endif
+       ;
+#endif
+
+#if defined BB_GZIP
+const char gzip_usage[] =
+       "gzip [OPTION]... FILE\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCompress FILE with maximum compression.\n"
+       "When FILE is '-', reads standard input.  Implies -c.\n\n"
+       "Options:\n"
+       "\t-c\tWrite output to standard output instead of FILE.gz\n"
+#endif
+       ;
+#endif
+
+#if defined BB_HEAD
+const char head_usage[] =
+       "head [OPTION] [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint first 10 lines of each FILE to standard output.\n"
+       "With more than one FILE, precede each with a header giving the\n"
+       "file name. With no FILE, or when FILE is -, read standard input.\n\n"
+
+       "Options:\n" "\t-n NUM\t\tPrint first NUM lines instead of first 10\n"
+#endif
+       ;
+#endif
+
+#if defined BB_HOSTNAME
+const char hostname_usage[] =
+       "hostname [OPTION] {hostname | -F file}\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nGet or set the hostname or DNS domain name. If a hostname is given\n"
+       "(or a file with the -F parameter), the host name will be set.\n\n"
+       "Options:\n"
+       "\t-s\t\tShort\n"
+
+       "\t-i\t\tAddresses for the hostname\n"
+       "\t-d\t\tDNS domain name\n"
+       "\t-F FILE\t\tUse the contents of FILE to specify the hostname\n"
+#endif
+       ;
+#endif
+
+#if defined BB_ID
+const char id_usage[] =
+       "id [OPTIONS]... [USERNAME]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint information for USERNAME or the current user\n\n"
+       "Options:\n"
+       "\t-g\tprints only the group ID\n"
+       "\t-u\tprints only the user ID\n"
+       "\t-r\tprints the real user ID instead of the effective ID (with -ug)\n\n"
+#endif
+       ;
+#endif
+
+#if defined BB_INSMOD
+const char insmod_usage[] =
+       "insmod [OPTION]... MODULE [symbol=value]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nLoads the specified kernel modules into the kernel.\n\n"
+       "Options:\n"
+       "\t-f\tForce module to load into the wrong kernel version.\n"
+       "\t-k\tMake module autoclean-able.\n"
+       "\t-v\tverbose output\n" "\t-x\tdo not export externs\n"
+#endif
+       ;
+#endif
+
+#if defined BB_KILL
+const char kill_usage[] =
+       "kill [-signal] process-id [process-id ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSend a signal (default is SIGTERM) to the specified process(es).\n\n"
+       "Options:\n" "\t-l\tList all signal names and numbers.\n\n"
+#endif
+       ;
+#endif
+
+#if defined BB_KILLALL
+const char killall_usage[] =
+       "killall [-signal] process-name [process-name ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSend a signal (default is SIGTERM) to the specified process(es).\n\n"
+       "Options:\n" "\t-l\tList all signal names and numbers.\n\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LENGTH
+const char length_usage[] =
+       "length STRING\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrints out the length of the specified STRING.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LN
+const char ln_usage[] =
+       "ln [OPTION] TARGET... LINK_NAME|DIRECTORY\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCreate a link named LINK_NAME or DIRECTORY to the specified TARGET\n"
+       "\nYou may use '--' to indicate that all following arguments are non-options.\n\n"
+       "Options:\n"
+       "\t-s\tmake symbolic links instead of hard links\n"
+
+       "\t-f\tremove existing destination files\n"
+       "\t-n\tno dereference symlinks - treat like normal file\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LOADACM
+const char loadacm_usage[] =
+       "loadacm\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nLoads an acm from standard input.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LOADFONT
+const char loadfont_usage[] =
+       "loadfont\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "Loads a console font from standard input.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LOADKMAP
+const char loadkmap_usage[] =
+       "loadkmap\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nLoads a binary keyboard translation table from standard input.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LOGGER
+const char logger_usage[] =
+       "logger [OPTION]... [MESSAGE]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nWrite MESSAGE to the system log.  If MESSAGE is '-', log stdin.\n\n"
+       "Options:\n"
+       "\t-s\tLog to stderr as well as the system log.\n"
+       "\t-t\tLog using the specified tag (defaults to user name).\n"
+
+       "\t-p\tEnter the message with the specified priority.\n"
+       "\t\tThis may be numerical or a ``facility.level'' pair.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LOGNAME
+const char logname_usage[] =
+       "logname\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint the name of the current user.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_LS
+const char ls_usage[] =
+       "ls [-1a"
+#ifdef BB_FEATURE_LS_TIMESTAMPS
+       "c"
+#endif
+       "d"
+#ifdef BB_FEATURE_LS_TIMESTAMPS
+       "e"
+#endif
+       "ln"
+#ifdef BB_FEATURE_LS_FILETYPES
+       "p"
+#endif
+#ifdef BB_FEATURE_LS_TIMESTAMPS
+       "u"
+#endif
+       "xAC"
+#ifdef BB_FEATURE_LS_FILETYPES
+       "F"
+#endif
+#ifdef BB_FEATURE_LS_RECURSIVE
+       "R"
+#endif
+       "] [filenames...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nList directory contents\n\n"
+       "Options:\n"
+       "\t-a\tdo not hide entries starting with .\n"
+#ifdef BB_FEATURE_LS_TIMESTAMPS
+       "\t-c\twith -l: show ctime (the time of last\n"
+       "\t\tmodification of file status information)\n"
+#endif
+       "\t-d\tlist directory entries instead of contents\n"
+#ifdef BB_FEATURE_LS_TIMESTAMPS
+       "\t-e\tlist both full date and full time\n"
+#endif
+       "\t-l\tuse a long listing format\n"
+       "\t-n\tlist numeric UIDs and GIDs instead of names\n"
+#ifdef BB_FEATURE_LS_FILETYPES
+       "\t-p\tappend indicator (one of /=@|) to entries\n"
+#endif
+#ifdef BB_FEATURE_LS_TIMESTAMPS
+       "\t-u\twith -l: show access time (the time of last\n"
+       "\t\taccess of the file)\n"
+#endif
+       "\t-x\tlist entries by lines instead of by columns\n"
+       "\t-A\tdo not list implied . and ..\n"
+       "\t-C\tlist entries by columns\n"
+#ifdef BB_FEATURE_LS_FILETYPES
+       "\t-F\tappend indicator (one of */=@|) to entries\n"
+#endif
+#ifdef BB_FEATURE_LS_RECURSIVE
+       "\t-R\tlist subdirectories recursively\n"
+#endif
+#endif
+       ;
+#endif
+
+#if defined BB_MAKEDEVS
+const char makedevs_usage[] =
+       "makedevs NAME TYPE MAJOR MINOR FIRST LAST [s]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCreates a range of block or character special files\n\n"
+       "TYPEs include:\n"
+       "\tb:\tMake a block (buffered) device.\n"
+       "\tc or u:\tMake a character (un-buffered) device.\n"
+       "\tp:\tMake a named pipe. MAJOR and MINOR are ignored for named pipes.\n\n"
+       "FIRST specifies the number appended to NAME to create the first device.\n"
+       "LAST specifies the number of the last item that should be created.\n"
+       "If 's' is the last argument, the base device is created as well.\n\n"
+       "For example:\n"
+       "\tmakedevs /dev/ttyS c 4 66 2 63   ->  ttyS2-ttyS63\n"
+       "\tmakedevs /dev/hda b 3 0 0 8 s    ->  hda,hda1-hda8\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MD5SUM
+const char md5sum_usage[] =
+       "md5sum [OPTION] [FILE]...\n"
+       "or:    md5sum [OPTION] -c [FILE]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint or check MD5 checksums.\n\n"
+       "Options:\n"
+       "With no FILE, or when FILE is -, read standard input.\n\n"
+       "\t-b\tread files in binary mode\n"
+       "\t-c\tcheck MD5 sums against given list\n"
+       "\t-t\tread files in text mode (default)\n"
+       "\t-g\tread a string\n"
+       "\nThe following two options are useful only when verifying checksums:\n"
+       "\t-s,\tdon't output anything, status code shows success\n"
+       "\t-w,\twarn about improperly formated MD5 checksum lines\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MKDIR
+const char mkdir_usage[] =
+       "mkdir [OPTION] DIRECTORY...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCreate the DIRECTORY(ies), if they do not already exist\n\n"
+       "Options:\n"
+
+       "\t-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n"
+       "\t-p\tno error if existing, make parent directories as needed\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MKFIFO
+const char mkfifo_usage[] =
+       "mkfifo [OPTIONS] name\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCreates a named pipe (identical to 'mknod name p')\n\n"
+       "Options:\n"
+       "\t-m\tcreate the pipe using the specified mode (default a=rw)\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MKFS_MINIX
+const char mkfs_minix_usage[] =
+       "mkfs.minix [-c | -l filename] [-nXX] [-iXX] /dev/name [blocks]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nMake a MINIX filesystem.\n\n"
+       "Options:\n"
+       "\t-c\t\tCheck the device for bad blocks\n"
+       "\t-n [14|30]\tSpecify the maximum length of filenames\n"
+       "\t-i INODES\tSpecify the number of inodes for the filesystem\n"
+       "\t-l FILENAME\tRead the bad blocks list from FILENAME\n"
+       "\t-v\t\tMake a Minix version 2 filesystem\n\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MKNOD
+const char mknod_usage[] =
+       "mknod [OPTIONS] NAME TYPE MAJOR MINOR\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCreate a special file (block, character, or pipe).\n\n"
+       "Options:\n"
+       "\t-m\tcreate the special file using the specified mode (default a=rw)\n\n"
+       "TYPEs include:\n"
+       "\tb:\tMake a block (buffered) device.\n"
+       "\tc or u:\tMake a character (un-buffered) device.\n"
+       "\tp:\tMake a named pipe. MAJOR and MINOR are ignored for named pipes.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MKSWAP
+const char mkswap_usage[] =
+       "mkswap [-c] [-v0|-v1] device [block-count]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrepare a disk partition to be used as a swap partition.\n\n"
+       "Options:\n" "\t-c\t\tCheck for read-ability.\n"
+       "\t-v0\t\tMake version 0 swap [max 128 Megs].\n"
+       "\t-v1\t\tMake version 1 swap [big!] (default for kernels > 2.1.117).\n"
+
+       "\tblock-count\tNumber of block to use (default is entire partition).\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MKTEMP
+const char mktemp_usage[] =
+       "mktemp [-q] TEMPLATE\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCreates a temporary file with its name based on TEMPLATE.\n"
+       "TEMPLATE is any name with six `Xs' (i.e. /tmp/temp.XXXXXX).\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MORE
+const char more_usage[] =
+       "more [FILE ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nMore is a filter for viewing FILE one screenful at a time.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MOUNT
+const char mount_usage[] = 
+       "mount [flags] device directory [-o options,more-options]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nMount a filesystem\n\n"
+       "Flags:\n" 
+       "\t-a:\t\tMount all filesystems in fstab.\n"
+#ifdef BB_MTAB
+       "\t-f:\t\t\"Fake\" mount. Add entry to mount table but don't mount it.\n"
+       "\t-n:\t\tDon't write a mount table entry.\n"
+#endif
+       "\t-o option:\tOne of many filesystem options, listed below.\n"
+       "\t-r:\t\tMount the filesystem read-only.\n"
+       "\t-t fs-type:\tSpecify the filesystem type.\n"
+       "\t-w:\t\tMount for reading and writing (default).\n"
+       "\n"
+       "Options for use with the \"-o\" flag:\n"
+       "\tasync/sync:\tWrites are asynchronous / synchronous.\n"
+       "\tatime/noatime:\tEnable / disable updates to inode access times.\n"
+       "\tdev/nodev:\tAllow use of special device files / disallow them.\n"
+       "\texec/noexec:\tAllow use of executable files / disallow them.\n"
+#if defined BB_FEATURE_MOUNT_LOOP
+       "\tloop:\t\tMounts a file via loop device.\n"
+#endif
+       "\tsuid/nosuid:\tAllow set-user-id-root programs / disallow them.\n"
+       "\tremount:\tRe-mount a currently-mounted filesystem, changing its flags.\n"
+       "\tro/rw:\t\tMount for read-only / read-write.\n"
+       "\nThere are EVEN MORE flags that are specific to each filesystem.\n"
+       "You'll have to see the written documentation for those.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_MT
+const char mt_usage[] =
+       "mt [-f device] opcode value\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nControl magnetic tape drive operation\n"
+#endif
+       ;
+#endif
+
+#if defined BB_CP_MV
+const char mv_usage[] =
+       "mv SOURCE DEST\n"
+       "   or: mv SOURCE... DIRECTORY\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nRename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_NC
+const char nc_usage[] =
+       "nc [IP] [port]\n" 
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nNetcat opens a pipe to IP:port\n"
+#endif
+       ;
+#endif
+
+#if defined BB_NSLOOKUP
+const char nslookup_usage[] =
+       "nslookup [HOST]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nQueries the nameserver for the IP address of the given HOST\n"
+#endif
+;
+#endif
+
+#if defined BB_PING
+#if defined BB_FEATURE_SIMPLE_PING
+const char ping_usage[] =
+       "ping host\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSend ICMP ECHO_REQUEST packets to network hosts\n"
+#endif
+       ;
+#else /* ! defined BB_FEATURE_SIMPLE_PING */
+const char ping_usage[] =
+       "ping [OPTION]... host\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSend ICMP ECHO_REQUEST packets to network hosts.\n\n"
+       "Options:\n"
+       "\t-c COUNT\tSend only COUNT pings.\n"
+       "\t-s SIZE\t\tSend SIZE data bytes in packets (default=56).\n"
+       "\t-q\t\tQuiet mode, only displays output at start\n"
+       "\t\t\tand when finished.\n"
+#endif
+       ;
+#endif
+#endif
+
+#if defined BB_PRINTF
+const char printf_usage[] =
+       "printf FORMAT [ARGUMENT...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nFormats and prints ARGUMENT(s) according to FORMAT,\n"
+       "Where FORMAT controls the output exactly as in C printf.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_PS
+const char ps_usage[] =
+       "ps\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nReport process status\n"
+       "\nThis version of ps accepts no options.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_RM
+const char rm_usage[] =
+       "rm [OPTION]... FILE...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nRemove (unlink) the FILE(s).  You may use '--' to\n"
+       "indicate that all following arguments are non-options.\n\n"
+       "Options:\n"
+       "\t-f\t\tremove existing destinations, never prompt\n"
+       "\t-r or -R\tremove the contents of directories recursively\n"
+#endif
+       ;
+#endif
+
+#if defined BB_RMDIR
+const char rmdir_usage[] =
+       "rmdir [OPTION]... DIRECTORY...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nRemove the DIRECTORY(ies), if they are empty.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_RMMOD
+const char rmmod_usage[] =
+       "rmmod [OPTION]... [MODULE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nUnloads the specified kernel modules from the kernel.\n\n"
+       "Options:\n" 
+       "\t-a\tTry to remove all unused kernel modules.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SED
+const char sed_usage[] =
+       "sed [-Vhnef] pattern [files...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\n"
+       "-n\tsuppress automatic printing of pattern space\n"
+       "-e script\tadd the script to the commands to be executed\n"
+       "-f scriptfile\tadd the contents of script-file to the commands to be executed\n"
+       "-h\tdisplay this help message\n"
+       "-V\toutput version information and exit\n"
+       "\n"
+       "If no -e or -f is given, the first non-option argument is taken as the\n"
+       "sed script to interpret. All remaining arguments are names of input\n"
+       "files; if no input files are specified, then the standard input is read.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SETKEYCODES
+const char setkeycodes_usage[] =
+       "setkeycodes SCANCODE KEYCODE ...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSet entries into the kernel's scancode-to-keycode map,\n"
+       "allowing unusual keyboards to generate usable keycodes.\n\n" 
+       "SCANCODE may be either xx or e0xx (hexadecimal),\n"
+       "and KEYCODE is given in decimal\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SH
+const char shell_usage[] =
+       "sh [FILE]...\n"
+       "   or: sh -c command [args]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nlash: The BusyBox command interpreter (shell).\n\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SLEEP
+const char sleep_usage[] =
+       "sleep N\n" 
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPause for N seconds.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SORT
+const char sort_usage[] =
+       "sort [-n]"
+#ifdef BB_FEATURE_SORT_REVERSE
+       " [-r]"
+#endif
+       " [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nSorts lines of text in the specified files\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SWAPONOFF
+const char swapoff_usage[] =
+       "swapoff [OPTION] [device]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nStop swapping virtual memory pages on the given device.\n\n"
+       "Options:\n"
+       "\t-a\tStop swapping on all swap devices\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SWAPONOFF
+const char swapon_usage[] =
+       "swapon [OPTION] [device]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nStart swapping virtual memory pages on the given device.\n\n"
+       "Options:\n"
+       "\t-a\tStart swapping on all swap devices\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SYNC
+const char sync_usage[] =
+       "sync\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nWrite all buffered filesystem blocks to disk.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_SYSLOGD
+const char syslogd_usage[] =
+       "syslogd [OPTION]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nLinux system and kernel (provides klogd) logging utility.\n"
+       "Note that this version of syslogd/klogd ignores /etc/syslog.conf.\n\n"
+       "Options:\n"
+       "\t-m NUM\t\tInterval between MARK lines (default=20min, 0=off)\n"
+       "\t-n\t\tRun as a foreground process\n"
+#ifdef BB_FEATURE_KLOGD
+       "\t-K\t\tDo not start up the klogd process\n"
+#endif
+       "\t-O FILE\t\tUse an alternate log file (default=/var/log/messages)\n"
+#endif
+       ;
+#endif
+
+#if defined BB_TAIL
+#if defined BB_FEATURE_SIMPLE_TAIL
+const char tail_usage[] =
+       "tail [OPTION] [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint last 10 lines of each FILE to standard output.\n"
+       "With more than one FILE, precede each with a header giving the\n"
+       "file name. With no FILE, or when FILE is -, read standard input.\n\n"
+       "Options:\n"
+       "\t-n NUM\t\tPrint last NUM lines instead of first 10\n"
+
+       "\t-f\t\tOutput data as the file grows.  This version\n"
+       "\t\t\tof 'tail -f' supports only one file at a time.\n"
+#endif
+       ;
+#else /* ! defined BB_FEATURE_SIMPLE_TAIL */
+const char tail_usage[] =
+       "tail [OPTION]... [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint last 10 lines of each FILE to standard output.\n"
+       "With more than one FILE, precede each with a header giving the file name.\n"
+       "With no FILE, or when FILE is -, read standard input.\n"
+       "\n"
+       "  -c=N[kbm]       output the last N bytes\n"
+       "  -f              output appended data as the file grows\n"
+       "  -n=N            output the last N lines, instead of last 10\n"
+       "  -q              never output headers giving file names\n"
+       "  -v              always output headers giving file names\n"
+       "\n"
+       "If the first character of N (bytes or lines) is a `+', output begins with \n"
+       "the Nth item from the start of each file, otherwise, print the last N items\n"
+       "in the file.  N bytes may be suffixed by k (x1024), b (x512), or m (1024^2).\n"
+#endif
+       ;
+#endif
+#endif
+
+#if defined BB_TAR
+const char tar_usage[] =
+#ifdef BB_FEATURE_TAR_CREATE
+       "tar -[cxtvO] "
+#else
+       "tar -[xtvO] "
+#endif
+#if defined BB_FEATURE_TAR_EXCLUDE
+       "[--exclude File] "
+#endif
+       "[-f tarFile] [FILE] ...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCreate, extract, or list files from a tar file.  Note that\n"
+       "this version of tar treats hard links as separate files.\n\n"
+       "Main operation mode:\n"
+#ifdef BB_FEATURE_TAR_CREATE
+       "\tc\t\tcreate\n"
+#endif
+       "\tx\t\textract\n"
+       "\tt\t\tlist\n"
+       "\nFile selection:\n"
+       "\tf\t\tname of tarfile or \"-\" for stdin\n"
+       "\tO\t\textract to stdout\n"
+#if defined BB_FEATURE_TAR_EXCLUDE
+       "\t--exclude\tfile to exclude\n"
+#endif
+       "\nInformative output:\n"
+       "\tv\t\tverbosely list files processed\n"
+#endif
+       ;
+#endif
+
+#if defined BB_TEE
+const char tee_usage[] =
+       "tee [OPTION]... [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nCopy standard input to each FILE, and also to standard output.\n\n"
+       "Options:\n" "\t-a\tappend to the given FILEs, do not overwrite\n"
+#endif
+       ;
+#endif
+
+#if defined BB_TELNET
+const char telnet_usage[] =
+       "telnet host [port]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nTelnet is used to establish interactive communication with another\n"
+       "computer over a network using the TELNET protocol.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_TEST
+const char test_usage[] =
+       "test EXPRESSION\n"
+       "or   [ EXPRESSION ]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nChecks file types and compares values returning an exit\n"
+       "code determined by the value of EXPRESSION.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_TOUCH
+const char touch_usage[] =
+       "touch [-c] file [file ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nUpdate the last-modified date on the given file[s].\n\n"
+       "Options:\n"
+       "\t-c\tDo not create any files\n"
+#endif
+       ;
+#endif
+
+#if defined BB_TR
+const char tr_usage[] =
+       "tr [-cds] STRING1 [STRING2]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nTranslate, squeeze, and/or delete characters from\n"
+       "standard input, writing to standard output.\n\n"
+       "Options:\n"
+       "\t-c\ttake complement of STRING1\n"
+       "\t-d\tdelete input characters coded STRING1\n"
+       "\t-s\tsqueeze multiple output characters of STRING2 into one character\n"
+#endif
+       ;
+#endif
+
+#if defined BB_TTY
+const char tty_usage[] =
+       "tty\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint the file name of the terminal connected to standard input.\n\n"
+       "Options:\n"
+       "\t-s\tprint nothing, only return an exit status\n"
+#endif
+       ;
+#endif
+
+#if defined BB_UMOUNT
+const char umount_usage[] =
+       "umount [flags] filesystem|directory\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "Unmount file systems\n"
+       "\nFlags:\n" "\t-a:\tUnmount all file systems"
+#ifdef BB_MTAB
+       " in /etc/mtab\n\t-n:\tDon't erase /etc/mtab entries\n"
+#else
+       "\n"
+#endif
+       "\t-r:\tTry to remount devices as read-only if mount is busy\n"
+#if defined BB_FEATURE_MOUNT_FORCE
+       "\t-f:\tForce filesystem umount (i.e. unreachable NFS server)\n"
+#endif
+#if defined BB_FEATURE_MOUNT_LOOP
+       "\t-l:\tDo not free loop device (if a loop device has been used)\n"
+#endif
+#endif
+       ;
+#endif
+
+#if defined BB_UNAME
+const char uname_usage[] =
+       "uname [OPTION]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint certain system information.  With no OPTION, same as -s.\n\n"
+       "Options:\n"
+       "\t-a\tprint all information\n"
+       "\t-m\tthe machine (hardware) type\n"
+       "\t-n\tprint the machine's network node hostname\n"
+       "\t-r\tprint the operating system release\n"
+       "\t-s\tprint the operating system name\n"
+
+       "\t-p\tprint the host processor type\n"
+       "\t-v\tprint the operating system version\n"
+#endif
+       ;
+#endif
+
+#if defined BB_UNIQ
+const char uniq_usage[] =
+       "uniq [OPTION]... [INPUT [OUTPUT]]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nDiscard all but one of successive identical lines from INPUT\n"
+       "(or standard input), writing to OUTPUT (or standard output).\n"
+#endif
+       ;
+#endif
+
+#if defined BB_UPDATE
+const char update_usage[] =
+       "update [options]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPeriodically flushes filesystem buffers.\n\n"
+       "Options:\n"
+       "\t-S\tforce use of sync(2) instead of flushing\n"
+       "\t-s SECS\tcall sync this often (default 30)\n"
+       "\t-f SECS\tflush some buffers this often (default 5)\n"
+#endif
+       ;
+#endif
+
+#if defined BB_USLEEP
+const char usleep_usage[] =
+       "usleep N\n" 
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPause for N microseconds.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_UUDECODE
+const char uudecode_usage[] =
+       "uudecode [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nUudecode a file that is uuencoded.\n\n"
+       "Options:\n"
+       "\t-o FILE\tdirect output to FILE\n"
+#endif
+       ;
+#endif
+
+#if defined BB_UUENCODE
+const char uuencode_usage[] =
+       "uuencode [OPTION] [INFILE] REMOTEFILE\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nUuencode a file.\n\n"
+       "Options:\n"
+       "\t-m\tuse base64 encoding as of RFC1521\n"
+#endif
+       ;
+#endif
+
+#if defined BB_WC
+const char wc_usage[] =
+       "wc [OPTION]... [FILE]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrint line, word, and byte counts for each FILE, and a total line if\n"
+       "more than one FILE is specified.  With no FILE, read standard input.\n\n"
+       "Options:\n"
+       "\t-c\tprint the byte counts\n"
+       "\t-l\tprint the newline counts\n"
+
+       "\t-L\tprint the length of the longest line\n"
+       "\t-w\tprint the word counts\n"
+#endif
+       ;
+#endif
+
+#if defined BB_WHICH
+const char which_usage[] =
+       "which [COMMAND ...]\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nLocates a COMMAND.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_WHOAMI
+const char whoami_usage[] =
+       "whoami\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nPrints the user name associated with the current effective user id.\n"
+#endif
+       ;
+#endif
+
+#if defined BB_YES
+const char yes_usage[] =
+       "yes [OPTION]... [STRING]...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nRepeatedly outputs a line with all specified STRING(s), or `y'.\n"
+#endif
+       ;
+#endif
index da6cca9ab732dcb165be2616888bf538d8cbf5a9..fcdf3bbf66c7f53ea851874e48245cb35001ac5b 100644 (file)
--- a/usleep.c
+++ b/usleep.c
 #include <stdlib.h>
 #include <unistd.h>
 
-const char usleep_usage[] = "usleep N\n" 
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPause for N microseconds.\n"
-#endif
-       ;
-
 extern int usleep_main(int argc, char **argv)
 {
        if ((argc < 2) || (**(argv + 1) == '-')) {
index 961e532b0b46425877e68a2a9e4ddca75c327281..a8c61c7b4cad5108cfdd41a97deaf7e17b100fc5 100644 (file)
@@ -32,16 +32,6 @@ static inline _syscall3(int, klogctl, int, type, char *, b, int, len);
 # include <sys/klog.h>
 #endif
 
-static const char dmesg_usage[] = "dmesg [-c] [-n LEVEL] [-s SIZE]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrints or controls the kernel ring buffer\n\n"
-       "Options:\n"
-       "\t-c\t\tClears the ring buffer's contents after printing\n"
-       "\t-n LEVEL\tSets console logging level\n"
-       "\t-s SIZE\t\tUse a buffer of size SIZE\n"
-#endif
-       ;
-
 int dmesg_main(int argc, char **argv)
 {
        char *buf, c;
index d9937355f78f1ac1acfffacc75f5d368d3188486..6bc3e7d66cc05543f5dbd16c18c38c9ac440aa7f 100644 (file)
@@ -34,13 +34,8 @@ extern int fdflush_main(int argc, char **argv)
        int value;
        int fd;
 
-       if (argc <= 1 || **(++argv) == '-') {
-               usage("fdflush DEVICE\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-                               "\nForces floppy disk drive to detect disk change\n"
-#endif
-                               );
-       }
+       if (argc <= 1 || **(++argv) == '-')
+               usage(fdflush_usage);
 
        fd = open(*argv, 0);
        if (fd < 0) {
index 927c16946b62eaf434705abdb4921b0a7c3a7f42..2da2427c1abbd221ceac8d1f8e6e37452a5d2555 100644 (file)
 /* From linux/fs.h */
 #define BLKFLSBUF  _IO(0x12,97)        /* flush buffer cache */
 
-
-static const char freeramdisk_usage[] =
-       "freeramdisk DEVICE\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nFrees all memory used by the specified ramdisk.\n"
-#endif
-       ;
-
 extern int
 freeramdisk_main(int argc, char **argv)
 {
index ea27c236ca505a0c9510f19528107f3b8f927702..5807b9af5cd4dd8bd8e3728794dd4240e35e7bf5 100644 (file)
@@ -288,21 +288,6 @@ static void leave(int status)
        exit(status);
 }
 
-const char fsck_minix_usage[] =
-       "Usage: fsck.minix [-larvsmf] /dev/name\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPerforms a consistency check for MINIX filesystems.\n\n"
-       "Options:\n"
-       "\t-l\tLists all filenames\n"
-       "\t-r\tPerform interactive repairs\n"
-       "\t-a\tPerform automatic repairs\n"
-       "\t-v\tverbose\n"
-       "\t-s\tOutputs super-block information\n"
-       "\t-m\tActivates MINIX-like \"mode not cleared\" warnings\n"
-       "\t-f\tForce file system check.\n\n"
-#endif
-       ;
-
 static void show_usage(void)
 {
        usage(fsck_minix_usage);
index 9ae4b569cec82f12096a7e82c21421dd2e520022..dec310d3072a419611c159fb8c08b900a1424a27 100644 (file)
@@ -267,19 +267,6 @@ static volatile void die(char *str)
        exit(8);
 }
 
-const char mkfs_minix_usage[] =
-       "mkfs.minix [-c | -l filename] [-nXX] [-iXX] /dev/name [blocks]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nMake a MINIX filesystem.\n\n"
-       "Options:\n"
-       "\t-c\t\tCheck the device for bad blocks\n"
-       "\t-n [14|30]\tSpecify the maximum length of filenames\n"
-       "\t-i INODES\tSpecify the number of inodes for the filesystem\n"
-       "\t-l FILENAME\tRead the bad blocks list from FILENAME\n"
-       "\t-v\t\tMake a Minix version 2 filesystem\n\n"
-#endif
-       ;
-
 static volatile void show_usage() __attribute__ ((noreturn));
 static volatile void show_usage()
 {
index 5a33945c838f7b1b76ed6c571b483503260ecdfd..eacd8816cdcc6ddce520eb8f496f6132052caf59 100644 (file)
 #include <asm/page.h>                  /* for PAGE_SIZE and PAGE_SHIFT */
                                /* we also get PAGE_SIZE via getpagesize() */
 
-
-static const char mkswap_usage[] =
-       "mkswap [-c] [-v0|-v1] device [block-count]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrepare a disk partition to be used as a swap partition.\n\n"
-       "Options:\n" "\t-c\t\tCheck for read-ability.\n"
-       "\t-v0\t\tMake version 0 swap [max 128 Megs].\n"
-       "\t-v1\t\tMake version 1 swap [big!] (default for kernels > 2.1.117).\n"
-
-       "\tblock-count\tNumber of block to use (default is entire partition).\n"
-#endif
-       ;
-
-
 #ifndef _IO
 /* pre-1.3.45 */
 #define BLKGETSIZE 0x1260
index 91c28156386d14c49aa99b836440c451c0ecfab3..2334576c05c228322f82797cad49651ef4a5554b 100644 (file)
 #define bb_need_help
 #include "messages.c"
 
-static const char more_usage[] = "more [FILE ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nMore is a filter for viewing FILE one screenful at a time.\n"
-#endif
-       ;
-
 /* ED: sparc termios is broken: revert back to old termio handling. */
 #ifdef BB_FEATURE_USE_TERMIOS
 #      if #cpu(sparc)
index addeb0925eb4d20abe396929b2a3d10da57da908..610d12d3419901ea3ab4bec234cd66fc4a9f93f8 100644 (file)
@@ -80,38 +80,6 @@ extern int umount2 (__const char *__special_file, int __flags);
 
 extern const char mtab_file[]; /* Defined in utility.c */
 
-static const char mount_usage[] = 
-       "mount [flags] device directory [-o options,more-options]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nMount a filesystem\n\n"
-       "Flags:\n" 
-       "\t-a:\t\tMount all filesystems in fstab.\n"
-#ifdef BB_MTAB
-       "\t-f:\t\t\"Fake\" mount. Add entry to mount table but don't mount it.\n"
-       "\t-n:\t\tDon't write a mount table entry.\n"
-#endif
-       "\t-o option:\tOne of many filesystem options, listed below.\n"
-       "\t-r:\t\tMount the filesystem read-only.\n"
-       "\t-t fs-type:\tSpecify the filesystem type.\n"
-       "\t-w:\t\tMount for reading and writing (default).\n"
-       "\n"
-       "Options for use with the \"-o\" flag:\n"
-       "\tasync/sync:\tWrites are asynchronous / synchronous.\n"
-       "\tatime/noatime:\tEnable / disable updates to inode access times.\n"
-       "\tdev/nodev:\tAllow use of special device files / disallow them.\n"
-       "\texec/noexec:\tAllow use of executable files / disallow them.\n"
-#if defined BB_FEATURE_MOUNT_LOOP
-       "\tloop:\t\tMounts a file via loop device.\n"
-#endif
-       "\tsuid/nosuid:\tAllow set-user-id-root programs / disallow them.\n"
-       "\tremount:\tRe-mount a currently-mounted filesystem, changing its flags.\n"
-       "\tro/rw:\t\tMount for read-only / read-write.\n"
-       "\nThere are EVEN MORE flags that are specific to each filesystem.\n"
-       "You'll have to see the written documentation for those.\n"
-#endif
-       ;
-
-
 struct mount_options {
        const char *name;
        unsigned long and;
index a79b93a2313251036294ca20ccfd56594fea8ce5..6aafe51a26dde27793cd884ab75d6e43ec7ab2dd 100644 (file)
@@ -35,25 +35,6 @@ _syscall1(int, swapoff, const char *, path);
 
 static int whichApp;
 
-static const char swapoff_usage[] =
-       "swapoff [OPTION] [device]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nStop swapping virtual memory pages on the given device.\n\n"
-       "Options:\n"
-       "\t-a\tStop swapping on all swap devices\n"
-#endif
-       ;
-
-static const char swapon_usage[] =
-       "swapon [OPTION] [device]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nStart swapping virtual memory pages on the given device.\n\n"
-       "Options:\n"
-       "\t-a\tStart swapping on all swap devices\n"
-#endif
-       ;
-
-
 #define SWAPON_APP   1
 #define SWAPOFF_APP  2
 
index 1b250fd3a3ddbc7bd2267e1a8ea8d48afea57d11..df075f7d9f14e413fdbc999cbe508285b6d3b90a 100644 (file)
@@ -39,28 +39,6 @@ extern int mount (__const char *__special_file, __const char *__dir,
 extern int umount (__const char *__special_file);
 extern int umount2 (__const char *__special_file, int __flags);
 
-
-
-static const char umount_usage[] =
-       "umount [flags] filesystem|directory\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "Unmount file systems\n"
-       "\nFlags:\n" "\t-a:\tUnmount all file systems"
-#ifdef BB_MTAB
-       " in /etc/mtab\n\t-n:\tDon't erase /etc/mtab entries\n"
-#else
-       "\n"
-#endif
-       "\t-r:\tTry to remount devices as read-only if mount is busy\n"
-#if defined BB_FEATURE_MOUNT_FORCE
-       "\t-f:\tForce filesystem umount (i.e. unreachable NFS server)\n"
-#endif
-#if defined BB_FEATURE_MOUNT_LOOP
-       "\t-l:\tDo not free loop device (if a loop device has been used)\n"
-#endif
-#endif
-;
-
 struct _mtab_entry_t {
        char *device;
        char *mountpt;
index 12a71a5739082d68c3f59ff3832c3af1550344db..90bef9238f103c885ad85e446fa12ee54f761d5c 100644 (file)
@@ -300,15 +300,6 @@ static int decode (const char *inname,
     return read_stduu (inname);
 }
 
-static const char uudecode_usage[] =
-    "uudecode [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-    "\nUudecode a file that is uuencoded.\n\n"
-    "Options:\n"
-    "\t-o FILE\tdirect output to FILE\n"
-#endif
-;
-
 int uudecode_main (int argc,
                    char **argv)
 {
index e107a01e71214b58798d0632976c138539401112..1433c7f3b4dd00bb8eb6b80fddfb007943a487f1 100644 (file)
@@ -180,15 +180,6 @@ static void encode()
   }
 }
 
-static const char uuencode_usage[] =
-    "uuencode [OPTION] [INFILE] REMOTEFILE\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-    "\nUuencode a file.\n\n"
-    "Options:\n"
-    "\t-m\tuse base64 encoding as of RFC1521\n"
-#endif
-;
-
 int uuencode_main (int argc,
                    char **argv)
 {
diff --git a/wc.c b/wc.c
index 3b0e589b6ccdcda948419f261d0d8b9fcf4aa270..058444d89634f2d2126caa9e2ca717eeb6ec6e63 100644 (file)
--- a/wc.c
+++ b/wc.c
 #include "internal.h"
 #include <stdio.h>
 
-static const char wc_usage[] = "wc [OPTION]... [FILE]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrint line, word, and byte counts for each FILE, and a total line if\n"
-       "more than one FILE is specified.  With no FILE, read standard input.\n\n"
-       "Options:\n"
-       "\t-c\tprint the byte counts\n"
-       "\t-l\tprint the newline counts\n"
-
-       "\t-L\tprint the length of the longest line\n"
-       "\t-w\tprint the word counts\n"
-#endif
-       ;
-
 static int total_lines, total_words, total_chars, max_length;
 static int print_lines, print_words, print_chars, print_length;
 
diff --git a/which.c b/which.c
index 186bfdad736b9dc5a33d0689772f61abf4e5c150..943e10a5744dba68acf23aec5111c3e6a9b45ba7 100644 (file)
--- a/which.c
+++ b/which.c
 #include <sys/stat.h>
 #include <sys/param.h>
 
-const char which_usage[] =
-       "which [COMMAND ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nLocates a COMMAND.\n"
-#endif
-       ;
-
 extern int which_main(int argc, char **argv)
 {
        char *path_list, *test, *tmp, *path_parsed;
index 01dff81f919b8b41be7be720f1177e5ba303adcf..84b27fe58ec472f0b63f9f766fe77bf6b38e6243 100644 (file)
--- a/whoami.c
+++ b/whoami.c
 #include <stdio.h>
 #include <pwd.h>
 
-static const char whoami_usage[] = "whoami\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPrints the user name associated with the current effective user id.\n"
-#endif
-       ;
-
 extern int whoami_main(int argc, char **argv)
 {
        char *user = xmalloc(9);
diff --git a/yes.c b/yes.c
index 0191bb003592bc2b3c88e226c9def60b3d69a3c4..f41bbb6ef4375a878afe463ce4cd31c0ac15f2d8 100644 (file)
--- a/yes.c
+++ b/yes.c
 #include "internal.h"
 #include <stdio.h>
 
-const char yes_usage[] =
-       "yes [OPTION]... [STRING]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nRepeatedly outputs a line with all specified STRING(s), or `y'.\n"
-#endif
-       ;
-
 extern int yes_main(int argc, char **argv)
 {
        int i;