| 123456789101112131415161718192021222324252627282930313233343536 | <sect2><title>Installation of Sh-utils</title><para>Install Shellutils by running the following commands:</para><blockquote><literallayout>	<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></literallayout></blockquote></sect2><sect2><title>FHS compliance notes</title><para>There is a command installed in this package which is named test. It is oftenused in shell scripts to evaluate conditions, but if more often encounteredunder the form <command>[ condition ]</command>. These brackets are built intothe bash interpreter, but the FHS dictates that there should exist a<filename>[</filename> binary. We create that in this way, while still in the<filename>/usr/bin</filename> directory:</para><blockquote><literallayout>	<userinput>ln -s test [</userinput></literallayout></blockquote></sect2>
 |