mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 21:04:56 +00:00
More formatting bugs fixed
-Erik
This commit is contained in:
parent
e31c06608e
commit
a19bc64653
@ -65,6 +65,8 @@ reboot, rm, rmdir, rmmod, sed, setkeycodes, sh, sfdisk, sleep, sort, sync,
|
|||||||
syslogd, swapon, swapoff, tail, tar, test, tee, touch, tr, true, tty, umount,
|
syslogd, swapon, swapoff, tail, tar, test, tee, touch, tr, true, tty, umount,
|
||||||
uname, uniq, update, uptime, usleep, wc, whoami, yes, zcat, [
|
uname, uniq, update, uptime, usleep, wc, whoami, yes, zcat, [
|
||||||
|
|
||||||
|
-------------------------------
|
||||||
|
|
||||||
=over 4
|
=over 4
|
||||||
|
|
||||||
=item basename
|
=item basename
|
||||||
@ -799,6 +801,7 @@ Usage: length string
|
|||||||
Prints out the length of the specified string.
|
Prints out the length of the specified string.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
$ length "Hello"
|
$ length "Hello"
|
||||||
5
|
5
|
||||||
|
|
||||||
@ -807,6 +810,7 @@ Example:
|
|||||||
=item ln
|
=item ln
|
||||||
|
|
||||||
Usage: ln [OPTION] TARGET... LINK_NAME|DIRECTORY
|
Usage: ln [OPTION] TARGET... LINK_NAME|DIRECTORY
|
||||||
|
|
||||||
Create a link named LINK_NAME or DIRECTORY to the specified TARGET
|
Create a link named LINK_NAME or DIRECTORY to the specified TARGET
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
@ -817,7 +821,7 @@ Options:
|
|||||||
Example:
|
Example:
|
||||||
|
|
||||||
$ ln -s BusyBox /tmp/ls
|
$ ln -s BusyBox /tmp/ls
|
||||||
[andersen@debian BusyBox]$ ls -l /tmp/ls
|
$ ls -l /tmp/ls
|
||||||
lrwxrwxrwx 1 root root 7 Apr 12 18:39 ls -> BusyBox*
|
lrwxrwxrwx 1 root root 7 Apr 12 18:39 ls -> BusyBox*
|
||||||
|
|
||||||
-------------------------------
|
-------------------------------
|
||||||
@ -1605,6 +1609,7 @@ Example:
|
|||||||
-------------------------------
|
-------------------------------
|
||||||
|
|
||||||
=item tr
|
=item tr
|
||||||
|
|
||||||
Usage: tr [-cds] STRING1 [STRING2]
|
Usage: tr [-cds] STRING1 [STRING2]
|
||||||
|
|
||||||
Translate, squeeze, and/or delete characters from
|
Translate, squeeze, and/or delete characters from
|
||||||
@ -1798,6 +1803,20 @@ it decompresses the file inquestion and send the output to stdout.
|
|||||||
|
|
||||||
=back
|
=back
|
||||||
|
|
||||||
|
=head1 LIBC NSS
|
||||||
|
|
||||||
|
GNU Libc uses the Name Service Switch (NSS) to configure the behavior of the C
|
||||||
|
library for the local environment, and to configure how it reads system data,
|
||||||
|
such as passwords and group information. BusyBox has made it Policy that it
|
||||||
|
will never use NSS, and will never use and libc calls that make use of NSS.
|
||||||
|
This allows you to run an embedded system without the need for installing an
|
||||||
|
/etc/nsswitch.conf file and without and /lib/libnss_* libraries installed.
|
||||||
|
|
||||||
|
If you are using a system that is using a remote LDAP server for authentication
|
||||||
|
via GNU libc NSS, and you want to use BusyBox, then you will need to adjust the
|
||||||
|
BusyBox source. Chances are though, that if you have enough space to install
|
||||||
|
of that stuff on your system, then you probably want the full GNU utilities.
|
||||||
|
|
||||||
=head1 SEE ALSO
|
=head1 SEE ALSO
|
||||||
|
|
||||||
textutils(1), shellutils(1), etc...
|
textutils(1), shellutils(1), etc...
|
||||||
@ -1857,4 +1876,4 @@ Enrique Zanardi <ezanardi@ull.es>
|
|||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
# $Id: busybox.pod,v 1.26 2000/05/02 05:32:07 erik Exp $
|
# $Id: busybox.pod,v 1.27 2000/05/02 06:40:02 erik Exp $
|
||||||
|
Loading…
Reference in New Issue
Block a user