lfs/chapter06/shellutils-inst.xml
Mark Hymers f1d11bf768 [Bug 251] fix comment
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1668 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
2002-03-05 23:25:45 +00:00

31 lines
978 B
XML

<sect2>
<title>Installation of Sh-utils</title>
<para>Install Shellutils by running the following commands:</para>
<para><screen><userinput>./configure --prefix=/usr &amp;&amp;
make &amp;&amp;
make install &amp;&amp;
cd /usr/bin &amp;&amp;
mv basename date echo false hostname /bin &amp;&amp;
mv pwd sleep stty su test true uname /bin &amp;&amp;
mv chroot ../sbin</userinput></screen></para>
</sect2>
<sect2>
<title>FHS compliance notes</title>
<para>There is a command installed in this package which is named test. It is
often used in shell scripts to evaluate conditions, but is more often
encountered in the form of <command>[ condition ]</command>. These brackets
are built into the bash interpreter, but the FHS dictates that there should be a
<filename>[</filename> binary. We create that in this way, while still in the
<filename>/bin</filename> directory:</para>
<para><screen><userinput>cd /bin &amp;&amp;
ln -sf test [</userinput></screen></para>
</sect2>