diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-05-02 06:40:02 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-05-02 06:40:02 +0000 |
commit | a19bc64653aab46f6335ed6aa7d7d70ff7b5fb0b (patch) | |
tree | 007744e7b6817bfef87d2e72d5579669583d0034 | |
parent | e31c06608e7737eff03bb80bbab093c40bf86395 (diff) | |
download | busybox-w32-a19bc64653aab46f6335ed6aa7d7d70ff7b5fb0b.tar.gz busybox-w32-a19bc64653aab46f6335ed6aa7d7d70ff7b5fb0b.tar.bz2 busybox-w32-a19bc64653aab46f6335ed6aa7d7d70ff7b5fb0b.zip |
More formatting bugs fixed
-Erik
-rw-r--r-- | docs/busybox.pod | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/docs/busybox.pod b/docs/busybox.pod index e64cf8070..ac492ab15 100644 --- a/docs/busybox.pod +++ b/docs/busybox.pod | |||
@@ -65,6 +65,8 @@ reboot, rm, rmdir, rmmod, sed, setkeycodes, sh, sfdisk, sleep, sort, sync, | |||
65 | syslogd, swapon, swapoff, tail, tar, test, tee, touch, tr, true, tty, umount, | 65 | syslogd, swapon, swapoff, tail, tar, test, tee, touch, tr, true, tty, umount, |
66 | uname, uniq, update, uptime, usleep, wc, whoami, yes, zcat, [ | 66 | uname, uniq, update, uptime, usleep, wc, whoami, yes, zcat, [ |
67 | 67 | ||
68 | ------------------------------- | ||
69 | |||
68 | =over 4 | 70 | =over 4 |
69 | 71 | ||
70 | =item basename | 72 | =item basename |
@@ -545,7 +547,7 @@ OPTIONS: | |||
545 | -i ignore case distinctions | 547 | -i ignore case distinctions |
546 | -n print line number with output lines | 548 | -n print line number with output lines |
547 | -q be quiet. Returns 0 if result was found, 1 otherwise | 549 | -q be quiet. Returns 0 if result was found, 1 otherwise |
548 | -v select non-matching lines | 550 | -v select non-matching lines |
549 | 551 | ||
550 | This version of grep matches full regular expresions. | 552 | This version of grep matches full regular expresions. |
551 | 553 | ||
@@ -799,6 +801,7 @@ Usage: length string | |||
799 | Prints out the length of the specified string. | 801 | Prints out the length of the specified string. |
800 | 802 | ||
801 | Example: | 803 | Example: |
804 | |||
802 | $ length "Hello" | 805 | $ length "Hello" |
803 | 5 | 806 | 5 |
804 | 807 | ||
@@ -807,6 +810,7 @@ Example: | |||
807 | =item ln | 810 | =item ln |
808 | 811 | ||
809 | Usage: ln [OPTION] TARGET... LINK_NAME|DIRECTORY | 812 | Usage: ln [OPTION] TARGET... LINK_NAME|DIRECTORY |
813 | |||
810 | Create a link named LINK_NAME or DIRECTORY to the specified TARGET | 814 | Create a link named LINK_NAME or DIRECTORY to the specified TARGET |
811 | 815 | ||
812 | Options: | 816 | Options: |
@@ -817,7 +821,7 @@ Options: | |||
817 | Example: | 821 | Example: |
818 | 822 | ||
819 | $ ln -s BusyBox /tmp/ls | 823 | $ ln -s BusyBox /tmp/ls |
820 | [andersen@debian BusyBox]$ ls -l /tmp/ls | 824 | $ ls -l /tmp/ls |
821 | lrwxrwxrwx 1 root root 7 Apr 12 18:39 ls -> BusyBox* | 825 | lrwxrwxrwx 1 root root 7 Apr 12 18:39 ls -> BusyBox* |
822 | 826 | ||
823 | ------------------------------- | 827 | ------------------------------- |
@@ -1061,7 +1065,7 @@ Creates a temporary file with its name based on TEMPLATE. | |||
1061 | TEMPLATE is any name with six `Xs' (i.e. /tmp/temp.XXXXXX). | 1065 | TEMPLATE is any name with six `Xs' (i.e. /tmp/temp.XXXXXX). |
1062 | 1066 | ||
1063 | Example: | 1067 | Example: |
1064 | 1068 | ||
1065 | $ mktemp /tmp/temp.XXXXXX | 1069 | $ mktemp /tmp/temp.XXXXXX |
1066 | /tmp/temp.mWiLjM | 1070 | /tmp/temp.mWiLjM |
1067 | $ ls -la /tmp/temp.mWiLjM | 1071 | $ ls -la /tmp/temp.mWiLjM |
@@ -1605,6 +1609,7 @@ Example: | |||
1605 | ------------------------------- | 1609 | ------------------------------- |
1606 | 1610 | ||
1607 | =item tr | 1611 | =item tr |
1612 | |||
1608 | Usage: tr [-cds] STRING1 [STRING2] | 1613 | Usage: tr [-cds] STRING1 [STRING2] |
1609 | 1614 | ||
1610 | Translate, squeeze, and/or delete characters from | 1615 | Translate, squeeze, and/or delete characters from |
@@ -1798,6 +1803,20 @@ it decompresses the file inquestion and send the output to stdout. | |||
1798 | 1803 | ||
1799 | =back | 1804 | =back |
1800 | 1805 | ||
1806 | =head1 LIBC NSS | ||
1807 | |||
1808 | GNU Libc uses the Name Service Switch (NSS) to configure the behavior of the C | ||
1809 | library for the local environment, and to configure how it reads system data, | ||
1810 | such as passwords and group information. BusyBox has made it Policy that it | ||
1811 | will never use NSS, and will never use and libc calls that make use of NSS. | ||
1812 | This allows you to run an embedded system without the need for installing an | ||
1813 | /etc/nsswitch.conf file and without and /lib/libnss_* libraries installed. | ||
1814 | |||
1815 | If you are using a system that is using a remote LDAP server for authentication | ||
1816 | via GNU libc NSS, and you want to use BusyBox, then you will need to adjust the | ||
1817 | BusyBox source. Chances are though, that if you have enough space to install | ||
1818 | of that stuff on your system, then you probably want the full GNU utilities. | ||
1819 | |||
1801 | =head1 SEE ALSO | 1820 | =head1 SEE ALSO |
1802 | 1821 | ||
1803 | textutils(1), shellutils(1), etc... | 1822 | textutils(1), shellutils(1), etc... |
@@ -1857,4 +1876,4 @@ Enrique Zanardi <ezanardi@ull.es> | |||
1857 | 1876 | ||
1858 | =cut | 1877 | =cut |
1859 | 1878 | ||
1860 | # $Id: busybox.pod,v 1.26 2000/05/02 05:32:07 erik Exp $ | 1879 | # $Id: busybox.pod,v 1.27 2000/05/02 06:40:02 erik Exp $ |