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
RevLine 
[673b0d8]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]>
[a001133]6<sect1 id="ch-system-bash" xreflabel="Bash" role="wrap">
[673b0d8]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>
[6370fa6]11
[a001133]12<sect2 role="package"><title/>
[5888299]13<para>The Bash package contains the Bourne-Again SHell.</para>
14
[a001133]15<segmentedlist>
16<segtitle>&buildtime;</segtitle>
17<segtitle>&diskspace;</segtitle>
18<seglistitem><seg>1.2 SBU</seg><seg>27 MB</seg></seglistitem>
19</segmentedlist>
[673b0d8]20
[a001133]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>
[3554fa3a]27
[a001133]28<sect2 role="installation">
[73aedd1d]29<title>Installation of Bash</title>
30
[8748bf3]31<para>Prepare Bash for compilation:</para>
[73aedd1d]32
[9dfc02f]33<screen><userinput>./configure --prefix=/usr --bindir=/bin \
[3125dfb]34 --without-bash-malloc --with-installed-readline</userinput></screen>
[73aedd1d]35
36<para>Compile the package:</para>
37
38<screen><userinput>make</userinput></screen>
39
[673b0d8]40<para>To test the results, issue:
[8a5f906]41<userinput>make tests</userinput>.</para>
[73aedd1d]42
43<para>Install the package:</para>
44
45<screen><userinput>make install</userinput></screen>
46
[ef13657]47<para>Run the newly compiled <command>bash</command> program (replacing the one that is
48currently being executed):</para>
[673b0d8]49
50<screen><userinput>exec /bin/bash --login +h</userinput></screen>
[73aedd1d]51
[ef13657]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>
[73aedd1d]60
61</sect2>
[6370fa6]62
[5888299]63
[c6cb3aa]64<sect2 id="contents-bash" role="content"><title>Contents of Bash</title>
[673b0d8]65
[c6cb3aa]66<segmentedlist>
67<segtitle>Installed programs</segtitle>
68<seglistitem><seg>bash, sh (link to bash) and bashbug</seg></seglistitem>
69</segmentedlist>
[673b0d8]70
[c6cb3aa]71<variablelist><title>Short descriptions</title>
[73aedd1d]72
[b8a819f]73<varlistentry id="bash">
74<term><command>bash</command></term>
[c6cb3aa]75<listitem>
[673b0d8]76<indexterm zone="ch-system-bash bash"><primary sortas="b-bash">bash</primary></indexterm>
[ef13657]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>
[c6cb3aa]80</listitem>
81</varlistentry>
[673b0d8]82
[b8a819f]83<varlistentry id="bashbug">
84<term><command>bashbug</command></term>
[c6cb3aa]85<listitem>
[673b0d8]86<indexterm zone="ch-system-bash bashbug"><primary sortas="b-bashbug">bashbug</primary></indexterm>
[ef13657]87<para>a shell script to help the user compose and mail bug reports
88concerning <command>bash</command> in a standard format.</para>
[c6cb3aa]89</listitem>
90</varlistentry>
[673b0d8]91
[b8a819f]92<varlistentry id="sh">
93<term><command>sh</command></term>
[c6cb3aa]94<listitem>
[673b0d8]95<indexterm zone="ch-system-bash sh"><primary sortas="b-sh">sh</primary></indexterm>
[ef13657]96<para>a symlink to the bash program. When invoked
[3c928f1]97as <command>sh</command>, <command>bash</command> tries to mimic the
98startup behavior of historical versions of <command>sh</command> as
[673b0d8]99closely as possible, while conforming to the POSIX standard as well.</para>
[c6cb3aa]100</listitem>
101</varlistentry>
102</variablelist>
[673b0d8]103
104</sect2>
105
106</sect1>
[ef13657]107
Note: See TracBrowser for help on using the repository browser.