bash.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-system-bash" role="wrap">
  7. <title>Bash-&bash-version;</title>
  8. <?dbhtml filename="bash.html"?>
  9. <indexterm zone="ch-system-bash"><primary sortas="a-Bash">Bash</primary></indexterm>
  10. <sect2 role="package"><title/>
  11. <para>The Bash package contains the Bourne-Again SHell.</para>
  12. <segmentedlist>
  13. <segtitle>&buildtime;</segtitle>
  14. <segtitle>&diskspace;</segtitle>
  15. <seglistitem><seg>1.2 SBU</seg><seg>24.6 MB</seg></seglistitem>
  16. </segmentedlist>
  17. <segmentedlist>
  18. <segtitle>&dependencies;</segtitle>
  19. <seglistitem><seg>Binutils, Coreutils, Diffutils, Gawk,
  20. GCC, Glibc, Grep, Make, Ncurses, and Sed.</seg></seglistitem>
  21. </segmentedlist>
  22. </sect2>
  23. <sect2 role="installation">
  24. <title>Installation of Bash</title>
  25. <para>If you downloaded the Bash documentation tarball and wish to install HTML
  26. documentation, issue the following commands:</para>
  27. <screen><userinput>tar -xvf ../bash-doc-&bash-doc-version;.tar.gz &amp;&amp;
  28. sed -i "s|htmldir = @htmldir@|htmldir = /usr/share/doc/bash-&bash-version;|" \
  29. Makefile.in</userinput></screen>
  30. <para>The following patch fixes various issues, including a problem where Bash
  31. will sometimes only show 33 characters on a line, then wrap to the next:</para>
  32. <screen><userinput>patch -Np1 -i ../&bash-fixes-patch;</userinput></screen>
  33. <para>Bash also has issues when compiled against newer versions of Glibc. The
  34. following patch resolves this problem:</para>
  35. <screen><userinput>patch -Np1 -i ../&bash-avoid_WCONTINUED-patch;</userinput></screen>
  36. <para>Prepare Bash for compilation:</para>
  37. <screen><userinput>./configure --prefix=/usr --bindir=/bin \
  38. --without-bash-malloc --with-installed-readline</userinput></screen>
  39. <para>The meaning of the configure options:</para>
  40. <variablelist>
  41. <varlistentry>
  42. <term><parameter>--with-installed-readline</parameter></term>
  43. <listitem><para>This option tells Bash to use the
  44. <filename class="libraryfile">readline</filename> library that is already installed
  45. on the system rather than using its own readline version.</para></listitem>
  46. </varlistentry>
  47. </variablelist>
  48. <para>Compile the package:</para>
  49. <screen><userinput>make</userinput></screen>
  50. <para>To test the results, issue:
  51. <userinput>make tests</userinput>.</para>
  52. <para>Install the package:</para>
  53. <screen><userinput>make install</userinput></screen>
  54. <para>Run the newly compiled <command>bash</command> program (replacing the one that is
  55. currently being executed):</para>
  56. <screen role="nodump"><userinput>exec /bin/bash --login +h</userinput></screen>
  57. <note><para>The parameters used make the <command>bash</command>
  58. process an interactive login shell and continue to disable hashing so
  59. that new programs are found as they become available.</para></note>
  60. </sect2>
  61. <sect2 id="contents-bash" role="content"><title>Contents of Bash</title>
  62. <segmentedlist>
  63. <segtitle>Installed programs</segtitle>
  64. <seglistitem><seg>bash, bashbug, and sh (link to bash)</seg></seglistitem>
  65. </segmentedlist>
  66. <variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
  67. <?dbfo list-presentation="list"?>
  68. <?dbhtml list-presentation="table"?>
  69. <varlistentry id="bash">
  70. <term><command>bash</command></term>
  71. <listitem>
  72. <para>A widely-used command interpreter; it performs many types of
  73. expansions and substitutions on a given command line before executing
  74. it, thus making this interpreter a powerful tool</para>
  75. <indexterm zone="ch-system-bash bash"><primary sortas="b-bash">bash</primary></indexterm>
  76. </listitem>
  77. </varlistentry>
  78. <varlistentry id="bashbug">
  79. <term><command>bashbug</command></term>
  80. <listitem>
  81. <para>A shell script to help the user compose and mail standard formatted bug
  82. reports concerning <command>bash</command></para>
  83. <indexterm zone="ch-system-bash bashbug"><primary sortas="b-bashbug">bashbug</primary></indexterm>
  84. </listitem>
  85. </varlistentry>
  86. <varlistentry id="sh">
  87. <term><command>sh</command></term>
  88. <listitem>
  89. <para>A symlink to the <command>bash</command> program; when invoked
  90. as <command>sh</command>, <command>bash</command> tries to mimic the
  91. startup behavior of historical versions of <command>sh</command> as
  92. closely as possible, while conforming to the POSIX standard as well</para>
  93. <indexterm zone="ch-system-bash sh"><primary sortas="b-sh">sh</primary></indexterm>
  94. </listitem>
  95. </varlistentry>
  96. </variablelist>
  97. </sect2>
  98. </sect1>