bash.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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-ch6-sbu;</seg>
  26. <seg>&bash-ch6-du;</seg>
  27. </seglistitem>
  28. </segmentedlist>
  29. </sect2>
  30. <sect2 role="installation">
  31. <title>Installation of Bash</title>
  32. <para>First, apply the following patch to fix various bugs that have been
  33. addressed upstream:</para>
  34. <screen><userinput remap="pre">patch -Np1 -i ../&bash-fixes-patch;</userinput></screen>
  35. <para>Prepare Bash for compilation:</para>
  36. <screen><userinput remap="configure">./configure --prefix=/usr \
  37. --bindir=/bin \
  38. --docdir=/usr/share/doc/bash-&bash-version; \
  39. --without-bash-malloc \
  40. --with-installed-readline</userinput></screen>
  41. <variablelist>
  42. <title>The meaning of the new configure option:</title>
  43. <varlistentry>
  44. <term><parameter>--with-installed-readline</parameter></term>
  45. <listitem>
  46. <para>This option tells Bash to use the <filename
  47. class="libraryfile">readline</filename> library that is already
  48. installed on the system rather than using its own readline
  49. version.</para>
  50. </listitem>
  51. </varlistentry>
  52. </variablelist>
  53. <para>Compile the package:</para>
  54. <screen><userinput remap="make">make</userinput></screen>
  55. <para>Skip down to <quote>Install the
  56. package</quote> if not running the test suite.</para>
  57. <para>To prepare the tests, ensure that the <systemitem class="username">nobody</systemitem> user can write to the sources tree:</para>
  58. <screen><userinput remap="test">chown -Rv nobody .</userinput></screen>
  59. <para>Now, run the tests as the <systemitem
  60. class="username">nobody</systemitem> user:</para>
  61. <screen><userinput remap="test">su nobody -s /bin/bash -c "PATH=$PATH make tests"</userinput></screen>
  62. <para>Install the package:</para>
  63. <screen><userinput remap="install">make install</userinput></screen>
  64. <para>Run the newly compiled <command>bash</command> program (replacing the one that is
  65. currently being executed):</para>
  66. <screen role="nodump"><userinput>exec /bin/bash --login +h</userinput></screen>
  67. <note>
  68. <para>The parameters used make the <command>bash</command>
  69. process an interactive login shell and continue to disable hashing so
  70. that new programs are found as they become available.</para>
  71. </note>
  72. </sect2>
  73. <sect2 id="contents-bash" role="content">
  74. <title>Contents of Bash</title>
  75. <segmentedlist>
  76. <segtitle>Installed programs</segtitle>
  77. <segtitle>Installed directory</segtitle>
  78. <seglistitem>
  79. <seg>bash, bashbug, and sh (link to bash)</seg>
  80. <seg>/usr/share/doc/bash-&bash-version;</seg>
  81. </seglistitem>
  82. </segmentedlist>
  83. <variablelist>
  84. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  85. <?dbfo list-presentation="list"?>
  86. <?dbhtml list-presentation="table"?>
  87. <varlistentry id="bash">
  88. <term><command>bash</command></term>
  89. <listitem>
  90. <para>A widely-used command interpreter; it performs many types of
  91. expansions and substitutions on a given command line before executing
  92. it, thus making this interpreter a powerful tool</para>
  93. <indexterm zone="ch-system-bash bash">
  94. <primary sortas="b-bash">bash</primary>
  95. </indexterm>
  96. </listitem>
  97. </varlistentry>
  98. <varlistentry id="bashbug">
  99. <term><command>bashbug</command></term>
  100. <listitem>
  101. <para>A shell script to help the user compose and mail standard
  102. formatted bug reports concerning <command>bash</command></para>
  103. <indexterm zone="ch-system-bash bashbug">
  104. <primary sortas="b-bashbug">bashbug</primary>
  105. </indexterm>
  106. </listitem>
  107. </varlistentry>
  108. <varlistentry id="sh">
  109. <term><command>sh</command></term>
  110. <listitem>
  111. <para>A symlink to the <command>bash</command> program; when invoked
  112. as <command>sh</command>, <command>bash</command> tries to mimic the
  113. startup behavior of historical versions of <command>sh</command> as
  114. closely as possible, while conforming to the POSIX standard as
  115. well</para>
  116. <indexterm zone="ch-system-bash sh">
  117. <primary sortas="b-sh">sh</primary>
  118. </indexterm>
  119. </listitem>
  120. </varlistentry>
  121. </variablelist>
  122. </sect2>
  123. </sect1>