diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-06-13 06:54:53 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-06-13 06:54:53 +0000 |
commit | 2b6ab3cbf8c486fd2faa2bec60e7b1d4ed807af1 (patch) | |
tree | d0e98c79dff9374fc3e4229bbf3c4e43164184a0 /docs | |
parent | 053b1462b72feea51b3b8745662447d5f8d18fda (diff) | |
download | busybox-w32-2b6ab3cbf8c486fd2faa2bec60e7b1d4ed807af1.tar.gz busybox-w32-2b6ab3cbf8c486fd2faa2bec60e7b1d4ed807af1.tar.bz2 busybox-w32-2b6ab3cbf8c486fd2faa2bec60e7b1d4ed807af1.zip |
Add new apps md5sum uudecode uuencode, fix some minor formatting things.
-Erik
Diffstat (limited to 'docs')
-rw-r--r-- | docs/busybox.pod | 81 |
1 files changed, 75 insertions, 6 deletions
diff --git a/docs/busybox.pod b/docs/busybox.pod index 03875a4d7..58576bb56 100644 --- a/docs/busybox.pod +++ b/docs/busybox.pod | |||
@@ -59,11 +59,12 @@ ar, basename, cat, chgrp, chmod, chown, chroot, clear, chvt, cp, cut, date, dd, | |||
59 | df, dirname, dmesg, du, dutmp, echo, false, fbset, fdflush, find, free, | 59 | df, dirname, dmesg, du, dutmp, echo, false, fbset, fdflush, find, free, |
60 | freeramdisk, deallocvt, fsck.minix, grep, gunzip, gzip, halt, head, hostid, | 60 | freeramdisk, deallocvt, fsck.minix, grep, gunzip, gzip, halt, head, hostid, |
61 | hostname, id, init, kill, killall, length, ln, loadacm, loadfont, loadkmap, | 61 | hostname, id, init, kill, killall, length, ln, loadacm, loadfont, loadkmap, |
62 | logger, logname, ls, lsmod, makedevs, math, mkdir, mkfifo, mkfs.minix, mknod, | 62 | logger, logname, ls, lsmod, makedevs, math, md5sum, mkdir, mkfifo, mkfs.minix, |
63 | mkswap, mktemp, nc, more, mount, mt, mv, nslookup, ping, poweroff, printf, ps, | 63 | mknod, mkswap, mktemp, nc, more, mount, mt, mv, nslookup, ping, poweroff, |
64 | pwd, reboot, rm, rmdir, rmmod, sed, setkeycodes, sh, sfdisk, sleep, sort, sync, | 64 | printf, ps, pwd, reboot, rm, rmdir, rmmod, sed, setkeycodes, sh, sfdisk, sleep, |
65 | syslogd, swapon, swapoff, tail, tar, test, tee, touch, tr, true, tty, umount, | 65 | sort, sync, syslogd, swapon, swapoff, tail, tar, test, tee, touch, tr, true, |
66 | uname, uniq, update, uptime, usleep, wc, whoami, yes, zcat, [ | 66 | tty, umount, uname, uniq, update, uptime, usleep, uudecode, uuencode, wc, |
67 | whoami, yes, zcat, [ | ||
67 | 68 | ||
68 | ------------------------------- | 69 | ------------------------------- |
69 | 70 | ||
@@ -1034,6 +1035,35 @@ Example: | |||
1034 | 1035 | ||
1035 | ------------------------------- | 1036 | ------------------------------- |
1036 | 1037 | ||
1038 | =item md5sum | ||
1039 | |||
1040 | Usage: md5sum [OPTION] [file ...] | ||
1041 | |||
1042 | Print or check MD5 checksums. | ||
1043 | |||
1044 | Options: | ||
1045 | |||
1046 | -b read files in binary mode | ||
1047 | -c check MD5 sums against given list | ||
1048 | -t read files in text mode (default) | ||
1049 | -g read a string | ||
1050 | |||
1051 | The following two options are useful only when verifying checksums: | ||
1052 | |||
1053 | -s don't output anything, status code shows success | ||
1054 | -w warn about improperly formated MD5 checksum lines | ||
1055 | |||
1056 | Example: | ||
1057 | |||
1058 | $ md5sum busybox | ||
1059 | 6fd11e98b98a58f64ff3398d7b324003 busybox | ||
1060 | $ md5sum -c - | ||
1061 | 6fd11e98b98a58f64ff3398d7b324003 busybox | ||
1062 | busybox: OK | ||
1063 | ^D | ||
1064 | |||
1065 | ------------------------------- | ||
1066 | |||
1037 | =item mkdir | 1067 | =item mkdir |
1038 | 1068 | ||
1039 | Usage: mkdir [OPTION] DIRECTORY... | 1069 | Usage: mkdir [OPTION] DIRECTORY... |
@@ -1724,6 +1754,45 @@ Example: | |||
1724 | 1754 | ||
1725 | ------------------------------- | 1755 | ------------------------------- |
1726 | 1756 | ||
1757 | =item uuencode | ||
1758 | |||
1759 | Usage: uuencode [OPTION] [INFILE] REMOTEFILE | ||
1760 | |||
1761 | Uuencode a file. | ||
1762 | |||
1763 | Options: | ||
1764 | |||
1765 | -m use base64 encoding as of RFC1521 | ||
1766 | |||
1767 | Example: | ||
1768 | |||
1769 | $ uuencode busybox busybox | ||
1770 | begin 755 busybox | ||
1771 | M?T5,1@$!`0````````````(``P`!````L+@$"#0```!0N@,``````#0`(``& | ||
1772 | ..... | ||
1773 | $ uudecode busybox busybox > busybox.uu | ||
1774 | $ | ||
1775 | |||
1776 | ------------------------------- | ||
1777 | |||
1778 | =item uudecode | ||
1779 | |||
1780 | Usage: uudecode [OPTION] [FILE] | ||
1781 | |||
1782 | Uudecode a uuencoded file | ||
1783 | |||
1784 | Options: | ||
1785 | |||
1786 | -o FILE direct output to FILE | ||
1787 | |||
1788 | Example: | ||
1789 | |||
1790 | $ uudecode -o busybox busybox.uu | ||
1791 | $ ls -l busybox | ||
1792 | -rwxr-xr-x 1 ams ams 245264 Jun 7 21:35 busybox | ||
1793 | |||
1794 | ------------------------------- | ||
1795 | |||
1727 | =item umount | 1796 | =item umount |
1728 | 1797 | ||
1729 | Usage: umount [flags] filesystem|directory | 1798 | Usage: umount [flags] filesystem|directory |
@@ -1952,4 +2021,4 @@ Enrique Zanardi <ezanardi@ull.es> | |||
1952 | 2021 | ||
1953 | =cut | 2022 | =cut |
1954 | 2023 | ||
1955 | # $Id: busybox.pod,v 1.40 2000/06/12 23:04:55 beppu Exp $ | 2024 | # $Id: busybox.pod,v 1.41 2000/06/13 06:54:53 andersen Exp $ |