| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 | <?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [  <!ENTITY % general-entities SYSTEM "../general.ent">  %general-entities;]><sect1 id="ch-system-bash" xreflabel="Bash" role="wrap"><title>Bash-&bash-version;</title><?dbhtml filename="bash.html"?><indexterm zone="ch-system-bash"><primary sortas="a-Bash">Bash</primary></indexterm><sect2 role="package"><title/><para>The Bash package contains the Bourne-Again SHell.</para><segmentedlist><segtitle>&buildtime;</segtitle><segtitle>&diskspace;</segtitle><seglistitem><seg>1.2 SBU</seg><seg>27 MB</seg></seglistitem></segmentedlist><segmentedlist><segtitle>Bash installation depends on</segtitle><seglistitem><seg>Binutils, Coreutils, Diffutils, Gawk,GCC, Glibc, Grep, Make, Ncurses, Sed.</seg></seglistitem></segmentedlist></sect2><sect2 role="installation"><title>Installation of Bash</title><para>The following patch fixes a problem where Bash sometimes will only show33 characters on a line and then wraps to the next line.</para><screen><userinput>patch -Np1 -i ../bash-&bash-version;-display_wrap-1.patch</userinput></screen><para>Prepare Bash for compilation:</para><screen><userinput>./configure --prefix=/usr --bindir=/bin \    --without-bash-malloc --with-installed-readline</userinput></screen><para>Compile the package:</para><screen><userinput>make</userinput></screen><para>To test the results, issue:<userinput>make tests</userinput>.</para><para>Install the package:</para><screen><userinput>make install</userinput></screen><para>Now run the newly compiled <command>bash</command> program (replacing the one you are currently executing):</para><screen><userinput>exec /bin/bash --login +h</userinput></screen><note><para>The parameters used make it an interactive login instance(so <filename>/etc/profile</filename> is read, if it exists, and the first found<filename>~/.bash_profile</filename>, <filename>~/.bash_login</filename> or and <filename>~/.profile</filename>) and continue todisable hashing so that new programs are found as they becomeavailable.</para></note></sect2><sect2 id="contents-bash" role="content"><title>Contents of Bash</title><segmentedlist><segtitle>Installed programs</segtitle><seglistitem><seg>bash, sh (link to bash) and bashbug</seg></seglistitem></segmentedlist><variablelist><title>Short descriptions</title><varlistentry id="bash"><term><command>bash</command></term><listitem><indexterm zone="ch-system-bash bash"><primary sortas="b-bash">bash</primary></indexterm><para>is a widely-used command interpreter. Itperforms many kinds of expansions and substitutions on a given command linebefore executing it, thus making this interpreter a powerful tool.</para></listitem></varlistentry><varlistentry id="bashbug"><term><command>bashbug</command></term><listitem><indexterm zone="ch-system-bash bashbug"><primary sortas="b-bashbug">bashbug</primary></indexterm><para>is a shell script to help the usercompose and mail bug reports concerning <command>bash</command> in a standard format.</para></listitem></varlistentry><varlistentry id="sh"><term><command>sh</command></term><listitem><indexterm zone="ch-system-bash sh"><primary sortas="b-sh">sh</primary></indexterm><para>is a symlink to the bash program. When invokedas <command>sh</command>, <command>bash</command> tries to mimic the startup behavior of historical versions of <command>sh</command> asclosely as possible, while conforming to the POSIX standard as well.</para></listitem></varlistentry></variablelist></sect2></sect1>
 |