mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-19 05:27:39 +00:00
c3feda740c
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1099 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<sect2>
|
|
<title>Installation of Sh-utils</title>
|
|
|
|
<para>Install Shellutils by running the following commands:</para>
|
|
|
|
<para><screen><userinput>./configure --prefix=/usr &&</userinput>
|
|
<userinput>make &&</userinput>
|
|
<userinput>make install &&</userinput>
|
|
<userinput>cd /usr/bin &&</userinput>
|
|
<userinput>mv date echo false pwd stty /bin &&</userinput>
|
|
<userinput>mv su true uname hostname /bin &&</userinput>
|
|
<userinput>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>/usr/bin</filename> directory:</para>
|
|
|
|
<para><screen><userinput>ln -sf test [</userinput></screen></para>
|
|
|
|
</sect2>
|
|
|