bash.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-bash" role="wrap">
  8. <?dbhtml filename="bash.html"?>
  9. <sect1info condition="script">
  10. <productname>bash</productname>
  11. <productnumber>&bash-version;</productnumber>
  12. <address>&bash-url;</address>
  13. </sect1info>
  14. <title>Bash-&bash-version;</title>
  15. <indexterm zone="ch-system-bash">
  16. <primary sortas="a-Bash">Bash</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Bash package contains the Bourne-Again SHell.</para>
  21. <segmentedlist>
  22. <segtitle>&buildtime;</segtitle>
  23. <segtitle>&diskspace;</segtitle>
  24. <seglistitem>
  25. <seg>&bash-fin-sbu;</seg>
  26. <seg>&bash-fin-du;</seg>
  27. </seglistitem>
  28. </segmentedlist>
  29. </sect2>
  30. <sect2 role="installation">
  31. <title>Installation of Bash</title>
  32. <para>Incorporate some upstream fixes:</para>
  33. <screen><userinput remap="pre">patch -Np1 -i ../&bash-fixes-patch;</userinput></screen>
  34. <para>Prepare Bash for compilation:</para>
  35. <screen><userinput remap="configure">./configure --prefix=/usr \
  36. --docdir=/usr/share/doc/bash-&bash-version; \
  37. --without-bash-malloc \
  38. --with-installed-readline</userinput></screen>
  39. <variablelist>
  40. <title>The meaning of the new configure option:</title>
  41. <varlistentry>
  42. <term><parameter>--with-installed-readline</parameter></term>
  43. <listitem>
  44. <para>This option tells Bash to use the <filename
  45. class="libraryfile">readline</filename> library that is already
  46. installed on the system rather than using its own readline
  47. version.</para>
  48. </listitem>
  49. </varlistentry>
  50. </variablelist>
  51. <para>Compile the package:</para>
  52. <screen><userinput remap="make">make</userinput></screen>
  53. <para>Skip down to <quote>Install the
  54. package</quote> if not running the test suite.</para>
  55. <para>To prepare the tests, ensure that the <systemitem class="username">tester</systemitem> user can write to the sources tree:</para>
  56. <screen><userinput remap="test">chown -Rv tester .</userinput></screen>
  57. <para>Now, run the tests as the <systemitem
  58. class="username">tester</systemitem> user:</para>
  59. <screen><userinput remap="test">su tester &lt;&lt; EOF
  60. PATH=$PATH make tests &lt; $(tty)
  61. EOF</userinput></screen>
  62. <!--
  63. <para>The <systemitem class="username">tester</systemitem>
  64. user does not have enough permissions for all the tests to pass. This shows
  65. up in some <quote>diff</quote> output in four test results. Portions of the
  66. run-execscript, run-lastpipe, run-read, and run-test programs
  67. are known to fail in the LFS chroot environment, but pass if the tests
  68. are run in a full system.</para>
  69. -->
  70. <para>Install the package and move the main executable to
  71. <filename class='directory'>/bin</filename>:</para>
  72. <screen><userinput remap="install">make install
  73. mv -vf /usr/bin/bash /bin</userinput></screen>
  74. <para>Run the newly compiled <command>bash</command> program (replacing the one that is
  75. currently being executed):</para>
  76. <screen role="nodump"><userinput>exec /bin/bash --login +h</userinput></screen>
  77. <note>
  78. <para>The parameters used make the <command>bash</command>
  79. process an interactive login shell and continue to disable hashing so
  80. that new programs are found as they become available.</para>
  81. </note>
  82. </sect2>
  83. <sect2 id="contents-bash" role="content">
  84. <title>Contents of Bash</title>
  85. <segmentedlist>
  86. <segtitle>Installed programs</segtitle>
  87. <segtitle>Installed directory</segtitle>
  88. <seglistitem>
  89. <seg>bash, bashbug, and sh (link to bash)</seg>
  90. <seg>/usr/include/bash, /usr/lib/bash, and
  91. /usr/share/doc/bash-&bash-version;</seg>
  92. </seglistitem>
  93. </segmentedlist>
  94. <variablelist>
  95. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  96. <?dbfo list-presentation="list"?>
  97. <?dbhtml list-presentation="table"?>
  98. <varlistentry id="bash">
  99. <term><command>bash</command></term>
  100. <listitem>
  101. <para>A widely-used command interpreter; it performs many types of
  102. expansions and substitutions on a given command line before executing
  103. it, thus making this interpreter a powerful tool</para>
  104. <indexterm zone="ch-system-bash bash">
  105. <primary sortas="b-bash">bash</primary>
  106. </indexterm>
  107. </listitem>
  108. </varlistentry>
  109. <varlistentry id="bashbug">
  110. <term><command>bashbug</command></term>
  111. <listitem>
  112. <para>A shell script to help the user compose and mail standard
  113. formatted bug reports concerning <command>bash</command></para>
  114. <indexterm zone="ch-system-bash bashbug">
  115. <primary sortas="b-bashbug">bashbug</primary>
  116. </indexterm>
  117. </listitem>
  118. </varlistentry>
  119. <varlistentry id="sh">
  120. <term><command>sh</command></term>
  121. <listitem>
  122. <para>A symlink to the <command>bash</command> program; when invoked
  123. as <command>sh</command>, <command>bash</command> tries to mimic the
  124. startup behavior of historical versions of <command>sh</command> as
  125. closely as possible, while conforming to the POSIX standard as
  126. well</para>
  127. <indexterm zone="ch-system-bash sh">
  128. <primary sortas="b-sh">sh</primary>
  129. </indexterm>
  130. </listitem>
  131. </varlistentry>
  132. </variablelist>
  133. </sect2>
  134. </sect1>