source: chapter06/bash.xml@ 1dc34de7

6.0
Last change on this file since 1dc34de7 was ef13657, checked in by Gerard Beekmans <gerard@…>, 20 years ago

Completed global edits for upcoming 6.0 release

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/testing/BOOK@4000 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 3.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-system-bash" xreflabel="Bash" role="wrap">
7<title>Bash-&bash-version;</title>
8<?dbhtml filename="bash.html"?>
9
10<indexterm zone="ch-system-bash"><primary sortas="a-Bash">Bash</primary></indexterm>
11
12<sect2 role="package"><title/>
13<para>The Bash package contains the Bourne-Again SHell.</para>
14
15<segmentedlist>
16<segtitle>&buildtime;</segtitle>
17<segtitle>&diskspace;</segtitle>
18<seglistitem><seg>1.2 SBU</seg><seg>27 MB</seg></seglistitem>
19</segmentedlist>
20
21<segmentedlist>
22<segtitle>Bash installation depends on</segtitle>
23<seglistitem><seg>Binutils, Coreutils, Diffutils, Gawk,
24GCC, Glibc, Grep, Make, Ncurses, Sed.</seg></seglistitem>
25</segmentedlist>
26</sect2>
27
28<sect2 role="installation">
29<title>Installation of Bash</title>
30
31<para>Prepare Bash for compilation:</para>
32
33<screen><userinput>./configure --prefix=/usr --bindir=/bin \
34 --without-bash-malloc --with-installed-readline</userinput></screen>
35
36<para>Compile the package:</para>
37
38<screen><userinput>make</userinput></screen>
39
40<para>To test the results, issue:
41<userinput>make tests</userinput>.</para>
42
43<para>Install the package:</para>
44
45<screen><userinput>make install</userinput></screen>
46
47<para>Run the newly compiled <command>bash</command> program (replacing the one that is
48currently being executed):</para>
49
50<screen><userinput>exec /bin/bash --login +h</userinput></screen>
51
52<note><para>The parameters used make the <command>bash</command>
53process an interactive login shell (which means the
54<filename>/etc/profile</filename> file is read if it exists, and
55whichever of the following three files are found first:
56<filename>~/.bash_profile</filename>,
57<filename>~/.bash_login</filename> or <filename>~/.profile</filename>)
58and continue to disable hashing so that new programs are found as they
59become available.</para></note>
60
61</sect2>
62
63
64<sect2 id="contents-bash" role="content"><title>Contents of Bash</title>
65
66<segmentedlist>
67<segtitle>Installed programs</segtitle>
68<seglistitem><seg>bash, sh (link to bash) and bashbug</seg></seglistitem>
69</segmentedlist>
70
71<variablelist><title>Short descriptions</title>
72
73<varlistentry id="bash">
74<term><command>bash</command></term>
75<listitem>
76<indexterm zone="ch-system-bash bash"><primary sortas="b-bash">bash</primary></indexterm>
77<para>a widely-used command interpreter. It performs many types of
78expansions and substitutions on a given command line before executing
79it, thus making this interpreter a powerful tool.</para>
80</listitem>
81</varlistentry>
82
83<varlistentry id="bashbug">
84<term><command>bashbug</command></term>
85<listitem>
86<indexterm zone="ch-system-bash bashbug"><primary sortas="b-bashbug">bashbug</primary></indexterm>
87<para>a shell script to help the user compose and mail bug reports
88concerning <command>bash</command> in a standard format.</para>
89</listitem>
90</varlistentry>
91
92<varlistentry id="sh">
93<term><command>sh</command></term>
94<listitem>
95<indexterm zone="ch-system-bash sh"><primary sortas="b-sh">sh</primary></indexterm>
96<para>a symlink to the bash program. When invoked
97as <command>sh</command>, <command>bash</command> tries to mimic the
98startup behavior of historical versions of <command>sh</command> as
99closely as possible, while conforming to the POSIX standard as well.</para>
100</listitem>
101</varlistentry>
102</variablelist>
103
104</sect2>
105
106</sect1>
107
Note: See TracBrowser for help on using the repository browser.