aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-05-02 06:40:02 +0000
committerErik Andersen <andersen@codepoet.org>2000-05-02 06:40:02 +0000
commita19bc64653aab46f6335ed6aa7d7d70ff7b5fb0b (patch)
tree007744e7b6817bfef87d2e72d5579669583d0034
parente31c06608e7737eff03bb80bbab093c40bf86395 (diff)
downloadbusybox-w32-a19bc64653aab46f6335ed6aa7d7d70ff7b5fb0b.tar.gz
busybox-w32-a19bc64653aab46f6335ed6aa7d7d70ff7b5fb0b.tar.bz2
busybox-w32-a19bc64653aab46f6335ed6aa7d7d70ff7b5fb0b.zip
More formatting bugs fixed
-Erik
-rw-r--r--docs/busybox.pod27
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,
65syslogd, swapon, swapoff, tail, tar, test, tee, touch, tr, true, tty, umount, 65syslogd, swapon, swapoff, tail, tar, test, tee, touch, tr, true, tty, umount,
66uname, uniq, update, uptime, usleep, wc, whoami, yes, zcat, [ 66uname, 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
550This version of grep matches full regular expresions. 552This version of grep matches full regular expresions.
551 553
@@ -799,6 +801,7 @@ Usage: length string
799Prints out the length of the specified string. 801Prints out the length of the specified string.
800 802
801Example: 803Example:
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
809Usage: ln [OPTION] TARGET... LINK_NAME|DIRECTORY 812Usage: ln [OPTION] TARGET... LINK_NAME|DIRECTORY
813
810Create a link named LINK_NAME or DIRECTORY to the specified TARGET 814Create a link named LINK_NAME or DIRECTORY to the specified TARGET
811 815
812Options: 816Options:
@@ -817,7 +821,7 @@ Options:
817Example: 821Example:
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.
1061TEMPLATE is any name with six `Xs' (i.e. /tmp/temp.XXXXXX). 1065TEMPLATE is any name with six `Xs' (i.e. /tmp/temp.XXXXXX).
1062 1066
1063Example: 1067Example:
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
1608Usage: tr [-cds] STRING1 [STRING2] 1613Usage: tr [-cds] STRING1 [STRING2]
1609 1614
1610Translate, squeeze, and/or delete characters from 1615Translate, 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
1808GNU Libc uses the Name Service Switch (NSS) to configure the behavior of the C
1809library for the local environment, and to configure how it reads system data,
1810such as passwords and group information. BusyBox has made it Policy that it
1811will never use NSS, and will never use and libc calls that make use of NSS.
1812This 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
1815If you are using a system that is using a remote LDAP server for authentication
1816via GNU libc NSS, and you want to use BusyBox, then you will need to adjust the
1817BusyBox source. Chances are though, that if you have enough space to install
1818of that stuff on your system, then you probably want the full GNU utilities.
1819
1801=head1 SEE ALSO 1820=head1 SEE ALSO
1802 1821
1803textutils(1), shellutils(1), etc... 1822textutils(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 $