From 92474b451445f3a1822c5ce6353ff91ff9d65e2d Mon Sep 17 00:00:00 2001 From: Manuel Canales Esparcia Date: Wed, 1 Feb 2006 20:41:29 +0000 Subject: Indenting chapter 6, part 2. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7324 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/bash.xml | 208 ++++++++++++++++++++++++++++++----------------------- 1 file changed, 120 insertions(+), 88 deletions(-) (limited to 'chapter06/bash.xml') diff --git a/chapter06/bash.xml b/chapter06/bash.xml index 3010805b7..82608f068 100644 --- a/chapter06/bash.xml +++ b/chapter06/bash.xml @@ -1,122 +1,154 @@ - %general-entities; ]> + -Bash-&bash-version; - + + + Bash-&bash-version; + + + Bash + + + + -<indexterm zone="ch-system-bash"><primary sortas="a-Bash">Bash</primary></indexterm> + <para>The Bash package contains the Bourne-Again SHell.</para> -<sect2 role="package"><title/> -<para>The Bash package contains the Bourne-Again SHell.</para> + <segmentedlist> + <segtitle>&buildtime;</segtitle> + <segtitle>&diskspace;</segtitle> -<segmentedlist> -<segtitle>&buildtime;</segtitle> -<segtitle>&diskspace;</segtitle> -<seglistitem><seg>1.2 SBU</seg><seg>24.6 MB</seg></seglistitem> -</segmentedlist> + <seglistitem> + <seg>1.2 SBU</seg> + <seg>24.6 MB</seg> + </seglistitem> + </segmentedlist> -<segmentedlist> -<segtitle>&dependencies;</segtitle> -<seglistitem><seg>Binutils, Coreutils, Diffutils, Gawk, -GCC, Glibc, Grep, Make, Ncurses, and Sed.</seg></seglistitem> -</segmentedlist> -</sect2> + <segmentedlist> + <segtitle>&dependencies;</segtitle> -<sect2 role="installation"> -<title>Installation of Bash + + Binutils, Coreutils, Diffutils, Gawk, GCC, Glibc, Grep, Make, + Ncurses, and Sed. + + -If you downloaded the Bash documentation tarball and wish to install HTML -documentation, issue the following commands: + + + + Installation of Bash + + If you downloaded the Bash documentation tarball and wish to install + HTML documentation, issue the following commands: tar -xvf ../bash-doc-&bash-doc-version;.tar.gz && sed -i "s|htmldir = @htmldir@|htmldir = /usr/share/doc/bash-&bash-version;|" \ Makefile.in -Prepare Bash for compilation: + Prepare Bash for compilation: ./configure --prefix=/usr --bindir=/bin \ --without-bash-malloc --with-installed-readline -The meaning of the configure options: + + The meaning of the configure options: - - ---with-installed-readline -This option tells Bash to use the -readline library that is already installed -on the system rather than using its own readline version. - - + + --with-installed-readline + + This option tells Bash to use the readline library that is already + installed on the system rather than using its own readline + version. + + -Compile the package: + + + Compile the package: make -To test the results, issue: -make tests. + To test the results, issue: + make tests. -Install the package: + Install the package: make install -Run the newly compiled bash program (replacing the one that is -currently being executed): + Run the newly compiled bash program (replacing the one that is + currently being executed): exec /bin/bash --login +h -The parameters used make the bash -process an interactive login shell and continue to disable hashing so -that new programs are found as they become available. - - - - -Contents of Bash - - -Installed programs -bash, bashbug, and sh (link to bash) - - -Short Descriptions - - - - -bash - -A widely-used command interpreter; it performs many types of -expansions and substitutions on a given command line before executing -it, thus making this interpreter a powerful tool -bash - - - - -bashbug - -A shell script to help the user compose and mail standard formatted bug -reports concerning bash -bashbug - - - - -sh - -A symlink to the bash program; when invoked -as sh, bash tries to mimic the -startup behavior of historical versions of sh as -closely as possible, while conforming to the POSIX standard as well -sh - - - - - + + The parameters used make the bash + process an interactive login shell and continue to disable hashing so + that new programs are found as they become available. + + + + + + Contents of Bash + + + Installed programs + + + bash, bashbug, and sh (link to bash) + + + + + Short Descriptions + + + + + bash + + A widely-used command interpreter; it performs many types of + expansions and substitutions on a given command line before executing + it, thus making this interpreter a powerful tool + + bash + + + + + + bashbug + + A shell script to help the user compose and mail standard + formatted bug reports concerning bash + + bashbug + + + + + + sh + + A symlink to the bash program; when invoked + as sh, bash tries to mimic the + startup behavior of historical versions of sh as + closely as possible, while conforming to the POSIX standard as + well + + sh + + + + + + + - -- cgit v1.2.3-54-g00ecf